@charset "UTF-8";

body {
  background-color: rgb(0, 5, 10);
  color: rgb(225, 225, 225);
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  margin: 0;
}

h1 {
  margin-top: 20px;
  font-size: 28px;
  font-weight: bold;
}

.logo-container img {
  max-width: 300px;
  height: auto;
  margin-top: 10px;
}

.descricao {
  max-width: 500px;
  margin: 10px auto;
  font-size: 18px auto;
  line-height: 1.5;
  text-align: justify;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 15px 0;
}

.socials img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.socials img:hover {
  transform: scale(1.1);
}

.emails {
  margin-bottom: 20px;
  font-size: 14px;
}

.emails a {
  color: rgb(225, 225, 225);
  text-decoration: none;
  font-weight: bold;
}

.emails a:hover {
  text-decoration: underline;
  color: rgb(80, 180, 255);
}