* {
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  font-family: "Red Hat Mono", monospace;
  background-color: #f2f2f2;
  color: #3c3c3c;
}

#main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.branding {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.branding > img {
  width: 420px;
}

.about {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: auto;
  padding: 32px;
  color: #f2f2f2;
  background-color: #3c3c3c;
}

p > a{
 color: aqua;
 /* text-decoration: none; */
}

h2 {
  margin-top: 32px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 12px;
}

/* On screens that are 992px or less, set the background color to blue */
@media screen and (max-width: 992px) {
  .branding > img {
    width: 360px;
  }
  h1 {
    font-size: 16px;
  }

  h2 {
    font-size: 16px;
  }

  p {
    font-size: 12px;
  }
}

/* For WebKit browsers */
::-webkit-scrollbar {
  width: 5px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
  background: #888; /* Color of the scrollbar thumb */
  border-radius: 5px; /* Rounded corners */
}

/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 600px) {
  #main {
    height: auto;
    flex-direction: column;
  }
  .branding > img {
    width: 280px;
  }
  .about {
    align-items: center;
    justify-content: center;
    overflow: visible;
  }

  h1 {
    font-size: 16px;
  }

  h2 {
    font-size: 16px;
  }

  p {
    font-size: 12px;
  }
}
