@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@100..900&display=swap');

:root{
    
    --White: hsl(0, 0%, 100%);
    --Grey: hsl(0, 0%, 20%);
    --DarkGrey: hsl(0, 0%, 12%);
    --OffBlack: hsl(0, 0%, 8%);
    --Green: hsl(75, 94%, 57%);
}


*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Bebas Neue", sans-serif;
}


body{
    display: flex;          
    align-items: center;  
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;                   
    background-color: var(--OffBlack);
}

main{
    position: relative;
    border-radius: 25px;
    background-color: var(--DarkGrey);
    height: 600px;
    width: 400px;
}

.jesicaModel{
    border-radius: 25px;
    height: 30%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#jesica{
    border-radius: 50%;
    height: 125px;
}

section{
    text-align: center;
}

h1{
    color: white;
    font-size: 1.625rem;
    
}

h2{
    color: var(--Green);
    font-size: 1rem;
}

section > p{
    color: var(--White);
    padding: 15px;
    font-size: 0.875rem;
}

nav{
    width: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
nav > a{
    position: relative;
    padding: 10px;
    text-decoration: none;
    color: var(--White);
    margin: 5px 50px 5px 50px;
    border-radius: 10px;
    text-align: center;
    background-color: var(--Grey);

}

nav > a:focus, nav > a:hover{
    background-color: var(--Green);
    color:var(--DarkGrey);

}

footer{
    text-align: center;
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

footer > p > a{

    color: var(--White);
    text-decoration: none;
}

@media (max-width: 480px){
    main{
        
        width: 100%;
    }

    h1{
        font-size: 40px;
    }

    h2{
        font-size: 23px;
    }

    p{
        font-size: 15px;
    }

    nav > a{
        font-size: 17px;
        margin: 5px 20px;
    }

    footer{
        position: relative;
    }
}