@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,600;0,700;0,800;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary-color: #011c40;
    --secondary-color: #023859;
    --accent-color: #26658c;
    --complementary-color1: #54abcf;
    --complementary-color2: #a7ebf2;
}


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

a{
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: filter .3s;
}

body{
    background-image: url('https://images.pexels.com/photos/3374210/pexels-photo-3374210.jpeg');
    background-size: cover;
    background-attachment: fixed;
    background-color: var(--primary-color);
    font-family: sans-serif;
    text-align: center;
    color: white;
}
#about{
    color: white;
}
#container{
    background: transparent;
            
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 20px;
    width: 80%;
    margin-inline: auto;
    max-width: 600px;
    margin-top: 50px;
    border: 1px solid gray;
    border-radius: 15px;
    font-size: 18px;

    transition: all 0.3s ease;
    /*
    background-color: #00000070;
    margin-top: 100px;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    margin-inline: auto;
    border-radius: 15px;
    */
}

img{
    width: 30%;
    border-radius: 50%;
}

h1, h2, p{
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: normal;
    font-family: 'Karla', sans-serif;
}


h1{
    font-size: 18px;
    font-weight: bold;
}

h2{
    font-size: 16px;
    opacity: 0.9;
}


.social{
    font-family: 'Open Sans', sans-serif;
    padding: 20px;
    margin-top: 10px;
    background-color: var(--secondary-color);
    border-width: 2px;
    border-radius: 100px;
    width: 100%;
    transition: background-color 0.2s ease;
    color: white;
}
.social:hover{
    background-color: var(--accent-color);
    transform: scale(1.05);
    /*
    
    background-color: var(--primary-color);
    color: white;*/
}

#email{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: underline;
    font-size: 1em;
    padding: 0px;
    background-color: transparent;
    border: 0px;
    cursor: pointer;
}

#year::after{
    content: " -";

}/*
#typewriter{
    display: flex;
    justify-content: center;
    
}
#typewriter a{
    margin-inline: auto;
    overflow: hidden;
    white-space: nowrap;
    border-right: 1px solid;
    animation: typing 3s steps(22) forwards, blink 1s step-end infinite;
    
    
}
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
@keyframes blink {
    50% {
        border-color: transparent;
    }

}*/