@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700&display=swap');

body{
    margin: 0%;
    padding: 0px;
}

h1{
    color: white;
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-size: 2.75rem;
    margin-bottom: 0%;
}

h2{
    color: white;
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-size: 1.25rem;
    margin-top: 3px;
    margin-bottom: 3px;
}

h3{
    color: white;
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    margin-top: 0%;
}

section{
    width: 100%;
    height: 100vh;   
    float: left;
    position: relative; 
}

#Profile{
    
    /*<-------- Circle --------->*/
    /* margin-left: auto;
    margin-right: auto;
    display: block;
    height: 350px;
    width: 350px;
    border-radius: 50%;
    object-fit:cover; */
    
    /*<-------- Square --------->*/
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 275px;
    height: 325px;
    background-size:cover;
    background-position: center;
    border-radius: 20px;
    border: solid black 5px;
    margin-top: 0%;
}

/*---------------------------Styling for the Menu----------------------------*/
#Menu ul{
    text-align: center;
    font-family: 'Rubik', sans-serif;
}

#Menu li{
    padding-top: 10px;
    padding-left: 25px;  
    font-size: 35px;
    list-style-type: none;
    display: inline-block;
    font-weight: bold;
}

#Menu a{
    text-decoration: none;
    color : White;
}

#Menu a:hover{
    text-decoration: underline;
    color : White;
}
/*--------------------------------------------------------------------------*/

#Home{
    background-image: url("img/background1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

#Contact{
    background-color: #A3C4BC;
}

#Projects{
    background-color: #778899;
}

html{
    scroll-behavior: smooth;
}