@import url('https://fonts.googleapis.com/css2?family=Aleo:wght@300;400;700&display=swap');


html{
    scroll-behavior: smooth;
}

body {
    font-family:'Aleo', serif;
    background: url('../img/geo.jpg') no-repeat;
    background-position: center;
    background-size: cover; 
    background-color:#ffffff;   
}
  
body::-webkit-scrollbar {
    width: 12px
} 
  
body::-webkit-scrollbar-thumb {   
  background-color: #C4C4C4;   
  border-radius: 10px;
}

div.align-card{
    display: flex;
    justify-content: center;
    align-items: center;
}

.card{
    z-index: 2;
    margin-top: 5%;
    margin-bottom:5%;
}

main.content{
    background-color: #ffffff;
    width: 450px;
    border-radius: 10px;
    border: 3px solid #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bio-section img{
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid #000000;
    display: block;
    margin-left:auto;
    margin-right:auto;
    margin-top:10%;
}

.bio-section h1{
    color: #353839;
    font-size: 36px;
    text-align: center;
    font-weight:300;
    margin-bottom:0px;
}

.bio-section p{
    color: #353839;
    text-align: center;
    font-size:20px;
    margin-top:0px;
    margin-bottom:0px;
}

.bio-section p:last-child {
    margin-bottom:10%;
}


.link {
    width: 300px;
    height: 60px;
    border: 3px solid #000000;
    background-color: #ffffff;
    border-radius: 50px;
    margin-top: 5%;
}

.link p{
    font-size: 20px;
    color: #353839;
    text-align: center;
    margin-left: 30px;
}

.item {
    display: flex;
    align-items: center;
}

a{
    text-decoration: none;
}

img.icon{
    width: 40px;
    height: 40px;
    margin-left: 50px;
}

p.subtitles{
    color: #353839;
    text-align: center;
    margin-top: 20%;
    margin-bottom:10%;
}


@media(max-width: 500px){

    .card{
        z-index: 2;
        margin-top: 5%;
    }
    
    main.content{
        background-color: #ffffff;
        width: 350px;
        height: 900px;
    }

    .bio-section img{
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 3px solid #000000;
        display: block;
        margin-left:auto;
        margin-right:auto;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .link {
        width: 300px;
        height: 60px;
        border: 3px solid #000000;
        background-color: #ffffff;
        border-radius: 50px;
        margin-top: 5%;
    }

    img.icon{
        width: 40px;
        height: 40px;
    }
    
}