html,
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #404e68;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: snow;
  background-image: url("./assets/background.jpg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}

#info {
  opacity: 0.8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 50vh;
  width: 60vh;
  border-radius: 1rem;
  background-color: white;
  padding: 5rem;
}

#logo div {
  text-align: center;
  margin-top: .5rem;
  font-style: italic;
}
#logo img {
  width: 100%;
}

#text {
  font-size: 1.5rem;
}

#contact div {
  display: flex;
  align-items: center;
  justify-content: start;
}
#contact div a {
  text-decoration: none;
  color: #404e68;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid transparent;
}
#contact div a:hover {
  border-bottom: 1px solid slategray;
}
#contact div:first-child {
  margin-bottom: 1rem;
}
#contact div img {
  color: #404e68;
  width: 1rem;
  margin-right: 0.3rem;
}
