* {
  font-family: "Montserrat";
}
h1 {
  font-size: 50px;
  color: #ffc4e8;
  text-align: center;
}
h6 {
  font-size: 18px;
  font-weight: 600;
  color: #243340;
}
body {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("/images/54baf6f57f01b11539e97cb1fa096711-cc_ft_960.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
#blue-box {
  background-color: #3d5263;
  padding: 50px 100px;
  width: fit-content;
}
p {
  text-align: center;
  color: white;
}
#logo {
  width: 400px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#pink-box {
  background-color: #ffc4e8;
  padding: 20px;
  width: 100vw;
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
#social-links-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 150px;
}
.bi {
  font-size: 30px;
  color: #243340;
}
@media screen and (max-width: 520px) {
  #blue-box {
    width: 80%;
    padding: 20px;
  }
  h1 {
    font-size: 40px;
  }
  #logo {
    width: 200px;
  }
  #pink-box {
    flex-direction: column;
    justify-content: flex-start;
    height: fit-content;
    padding: 4px;
  }
  h6 {
    margin: 4px;
  }
}
