



@font-face {
    font-family: __agrandir_regular;
    src: url(/font/Agrandir-Regular.otf);
}

@font-face {
    font-family: __writer;
    src: url(/font/writer.woff2);
    
}

@font-face {
    font-family: __coet_bold;
    src: url(/font/coet-bold.otf);
}

html{
    background-color: #F6F5F0;

}

nav{
    float: right;
    list-style: none;
}

body {
    color: #4b5361;
    font-family: '__writer';
    background-color: #F6F5F0;
    margin: 2%;
    font-size: 6vw;
    font-style: normal;
    font-weight: 400;
}


p{
    margin: 0px;
    background-color: #F6F5F0;
}

.headings{
    font-family: '__agrandir_regular';
    text-align: center;
    font-size: 8vw;
    color: #3498DB;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
}
h6{
    font-style: normal;
    font-weight: 400;
}

section {
    margin-top: 2px;
}

/* ********************************************************* */
/* Section Name */
/* ********************************************************* */
#section-name {
    margin: 1%;
}

#title-container {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    justify-items: center;
    row-gap: 20px;
}

#my-name {
    color: #3498DB;
    max-width: 100%;
    font-size: 20vw;
    font-family: '__coet_bold','Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

#my-name-sub {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#dot {
    margin-left: 10px;
    margin-top: auto;
    margin-bottom: 5%;
}

#my-occupation {
    font-family: '__agrandir_regular';
    background-color: #ffe4c4;
    text-align: center;
    padding: 10px;
    border-radius: 10px;

    
}


/* ********************************************************* */
/* Section Welcome */
/* ********************************************************* */
#section-welcome{
    margin: 1%;
    justify-items: center;
    display: grid;
}


#welcome-anim{
    justify-self: center;
    justify-items: center;
    align-self: center;
    align-content: center;
}

#welcome-text {
    
    text-align:center;
}

/* ********************************************************* */
/* Section About */
/* ********************************************************* */
#section-about{
    margin-top: 5%;   
}

#about-me{
    
}

#about-text {
    text-align: center;
    margin-top: 20px;
}
/* ********************************************************* */
/* Section Project */
/* ********************************************************* */

#section-projects{
    margin-top: 50px;
    
}
#project-container{

}
.project-title{
    text-decoration: none;
    font-weight: 500;
    background-color: #DDE4ED;
    color: #4b5361;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 30px;
    border-radius: 10px;
}
.container{
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    grid-row-gap: 5px;
    margin-bottom: 30px;
}
.project-thumbnail{
    max-width: 90%;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}


/* Styles for screens between 601px and 1400px */
@media screen and (min-width: 601px) {
    body {
        font-size: 3vw;
    }
    .div-side-by-side{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    #my-name{
        font-size: 12vw;
    }
    #my-name-sub{

    }
    #dot{

    }
    #my-occupation{
        font-size: 4vw;
    }
    #welcome-text{
        font-size: 2vw;
    }

}