@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,200&display=swap'); 

*{
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: sans-serif;
    text-align: center;
}


body{
    background-color: black;
}

.link-bio {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    background-color:black;
    gap: 20px;
}

.link-bio img{
    width: 150px;
    height: 150px;
    border: solid 2px white;
    border-radius: 50%;
    border-style: dashed;
}

.link-bio{
    font-size: 40px;
    width: auto;
    height: auto;
    margin: auto;
}

.link-bio h1{
    font-family: 'Montserrat', sans-serif;
}

.link-bio h2{
    font-size: 40px;
}

.link-bio h3{
    font-size: 20px;
}


.link-bio a {
  background-color: rgb(94, 92, 92);
  color: white;  
    padding: 15px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    border: solid 2px white;
    border-radius: 10px;
    transition: transform .2s;
}

#instagram:hover{
    background-image: linear-gradient(45deg, #FF9749, #A631BF);
    color: white;
    
}

#wpp:hover{
    background-color:#37BE4A;
    color: white;

    
}

#facebook:hover{
    background-color:#3578E5;
    color: white;

}
/*------------------------------------------------------------------*/
#instagram:active{
    background-image: linear-gradient(45deg, #FF9749, #A631BF);
    color: white;
    
}

#wpp:active{
    background-color:#37BE4A;
    color: white;

    
}

#facebook:active{
    background-color:#3578E5;
    color: white;

}



.link-bio a:hover{

    transform: scale(1.1);
    letter-spacing: 1.2px;
     
}

footer {
    background-color: rgb(44, 44, 44);
    padding: 12px;
    display: block;
    margin:auto;
    margin-top: 10%;
    border-top: 3px solid;
    border-color: rgb(145, 145, 145); 
}

footer p{
    text-align: center;
    color: rgb(146, 146, 146)   ;
    text-decoration: none;
    font-size: 13px; 
}

footer a:link{
    text-decoration: none;
    color: rgb(196, 196, 196); 
    font-size: 13px; 
}

footer a:visited{
    text-decoration: none;
    color: rgb(196, 196, 196);   
}

.maps{
    padding: 5%;
    font-size: 25px;
    font-weight: normal;
    text-align: center;
    margin: 0;
    display: block;
    height: 500px;
    width: auto;
}
.maps iframe{
    border:solid 2px; border-color: white;
    border-radius: 5%;
    border-style: dashed;
    width:300px;
    height: 300px;
}

