@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}
body{
    height: 100vh; /* Garante que o corpo ocupe toda a altura da janela de visualização */
    background-color:  hsl(257, 40%, 49%);
    background-image: url('./pastas do desafio/huddle-landing-page-with-single-introductory-section-master/images/bg-desktop.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.container{ 
    max-width: 1440px;
    display: flex;
    position: absolute;
    top: 145px;
    left: 3%;
}
header img{
  height: 30px;
  top: 60px;
  left: 90px;
  display: flex;
  position: relative;
}
 
main{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

main img{
    width: 560px;
}

.conteudo{
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 500px;
    top: -30px;
    gap: 20px;
}

footer a{
    display: grid; /* Transforma o link em um grid para facilitar a centralização do conteúdo */
    place-content: center; /* Centraliza o conteúdo dentro do link*/
    border: 2px solid white;
    color: white;
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

footer  a:hover{
    border: 2px solid hsl(300, 69%, 71%);
    color: hsl(300, 69%, 71%); /* Altera a cor do ícone e da borda ao passar o mouse sobre o link */
}

footer i{
 font-size: 1.3rem;
}


footer{
    gap: 16px; /* Espaçamento entre os ícones */
    display: flex;
    position: relative;
    top: 40px;
    right: 60px;
    align-items: end;
}

.btn{
    display: inline-block;
    padding: 10px 45px;
    border-radius: 25px;
    border: none;
    color: hsl(257, 40%, 49%);
    box-shadow: 2px 2px 2px black;
    align-self: flex-start;
}

.btn:hover{
    background-color: hsl(300, 69%, 71%);
    color: white;
}

h1, p{
  color: white;
  font-weight: 400;
  width: 400px;
  font-family: poppins, sans-serif;
}

p{
    width: 500px;
}

@media (max-width: 375px){
    body{
        overflow-x: hidden;
        background-image: url('./pastas do desafio/huddle-landing-page-with-single-introductory-section-master/images/bg-mobile.svg');
        background-repeat: no-repeat;
        background-size: contain;
        min-height: 100vh;/* Garante que o corpo ocupe toda a altura da janela de visualização */
    }

   header img{
       top: 30px;
       left: 40px;
    }
  
main{
    display: flex;
    flex-direction: column;
    position: relative;
    left: 50px;
}
main img{
    width: 300px;
    display: flex;
    position: relative;
    bottom: 20px;
    left: -24px;
}

.conteudo{
    gap: 10px;
    width: 200px;
    text-align: center;
}

h1{
    display: flex;
    position: relative;
    width: 300px;
    font-size: 1.5em;
    text-align: center;
    left: -68px;
}

p{
    display: flex;
    position: relative;
    width: 260px;
    font-size: 0.8em;
    text-align: center;
    left: -45px;
}

.btn{
    padding: 10px 80px;
        display: flex;
        position: relative;
        right: 20px;
}
footer{
   
     right: 190px;
}

footer i{
    font-size: 0.9rem;
}

footer a{
   width: 40px;
    height: 40px;
}
}