* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

:root {
  --main-color: orange;
  --main-color-light: rgba(255, 166, 0, 0.378);
}

main {
  background-image: url("assets/f7b9bb2b-a941-4479-af7c-5dd78d2a110d.JPG");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  padding: .5rem;
}

.text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}

.text > p {
  text-align: center;
}

.logo > img {
  height: 100px;
  width: 100px;
}

.container {
  background-color: rgba(0, 0, 0, .6);
  color: white;
  backdrop-filter: blur(0.25rem);
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.social-networks {
  display: flex;
  flex-direction: row;
  gap: .5rem;
}

.social-link {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  height: 1.5rem;
  width: 1.5rem;
  cursor: pointer;
  opacity: 1;
  transition: opacity 300ms ease-out;
}

.social-link:hover {
  opacity: .7;
}

@media only screen and (max-width: 600px) {
  main {
    font-size: 12px;
  }
  .container {
    padding: .5rem;
  }
}
