* {
  margin: 0;
  padding: 0;
}

html, body{
  height: 100%;
}

body{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: lightgray;
}

nav{
  background-color: #575555;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.logo {
  font-size: 24px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.4vw;
  color: white;
}

nav ul{
  list-style: none;
  background: #575555;
}

nav ul li{
  display: inline-block;
  position: relative;
  letter-spacing: 0.1vw;
}

nav ul li a{
  display: block;
  padding: 1.2vw 2vw;
  color: white;
  text-decoration: none;
  text-align: center;
}

nav ul li .submenu-list{
  width: 100%;
  background: #575555;
  position: absolute;
  z-index: 999;
  display: none;
}

nav ul li .submenu-list li{
  display: block;
}

nav ul li a:hover{
  background-color: #292828;
}

nav ul li:hover .submenu-list{
  display: block;
}

footer{
  width: 100%;
  color: #f5f5f5;
  margin-top: auto;
  flex-shrink: 0;
}

#footer_conteudo{
  background-color: #575555;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 3rem 3.5rem;
}

#footer_contato{
  margin-bottom: 0.75rem;
}

#logo {
  font-size: 24px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.4vw;
  color: white;
}

#footer_social{
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

#footer_social .footer-link{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  color: #f5f5f5;
  border-radius: 50%;
  transition: all 0.4s;
}

.footer-link{
  text-decoration: none;
}

#footer_social .footer-link i{
  font-size: 1.25rem;
}

#footer_social .footer-link:hover{
  opacity: 0.8;
}

#instagram{
  background: linear-gradient(#7f37c9, #ff2992, #ff9807);
}

#footer_copy{
  display: flex;
  justify-content: center;
  background-color: #292828;
  font-size: 0.9rem;
  padding: 0.8rem;
  font-weight: 100;
}

@media screen and (max-width: 768px) {
  #footer_conteudo{
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media screen and (max-width: 426px) {
  #footer_conteudo{
    grid-template-columns: repeat(1, 1fr);
    padding: 3rem 2rem;
  }
}

main {
  background-size: cover;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 0;
  display: flex;
  width: 100%;
  flex: 1;
}


.corpo{
  display: flex;
  align-items: center;
  width: 60vw;
  height: 30vw;
}

.me{
  object-fit: cover;
  margin-left: 5vw;
  height: 20vw; /* a prop é 1:1, portanto, h=x=w*/ 
}

.Sobre{

  flex-shrink: 0;
  margin-left: 2vw;
  margin-top:-10vw;
  height: 10vw;
  width: 28vw;
}

.escrito{
  font-family:'Times New Roman';
  font-size: 1vw;
}