
@import url('https://fonts.googleapis.com/css2?family=Livvic:wght@300;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline:0;
}
a {text-decoration: none;}
li{list-style: none;}
.header p,a,h4 {     
     font-family: "Livvic", sans-serif;
     font-weight: 400;
     font-style: normal; 
     line-height: 1.15;
}
body {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/assets/images/bg-google.avif') center center no-repeat;
    background-size: cover;    
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    background: rgba(255, 255, 255, .1);
    border-radius: 1.5rem;
    backdrop-filter: blur( 13.5px );
    -webkit-backdrop-filter: blur( 13.5px );
}

main .wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 430px;
    padding:  4rem;
}

.header {
    text-align: center;    
}

.cursor {
    cursor: pointer;
}

.logo {
    border-radius: 50%;
}

.nomeLink {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.header .share {
    display: flex;
    align-items: center;
    justify-content: end;

}

.header .btn__share{  
    color: #f2f2f2; 
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: rgba(3, 3, 3, .30);
    border-radius: 1.2rem;
    position: relative;
    bottom: 40px;
    left: 85px; 
}

.header p {
    font-family: "Livvic", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #f2f2f2;
    padding: .5rem 2rem;

}
  
.header .logo {
    display: block;
    width: 125px;
    margin: .2rem auto;

}
.btns__list {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}
.btns__list .item {
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;    
    padding: .5rem 1rem;
    background: rgba(3, 3, 3, .30);
    border-radius: .7rem;   
}
.btns__list .item a{
     display: flex;
    justify-content: center;
    align-items: center; 
    gap: 1rem;  
    color: #f2f2f2;
}



@media screen and (max-width:500px)
{
     main {
      height: 100%;
      max-height: auto;
      border-radius: unset;
     }
    .header h1 {
       font-size: 1.2rem;
      }  
}

