:root{
    --primary: #EA5267;
    --bg: #F7F7FF;
    --secondary: #279AF1;
    --accent:#23B5D3;
    --text-color:#070600;
    font-size: 20px;
}

*{
    padding: 0;
    margin: 0;
}
body{
    background: var(--bg);
    color: var(--text-color);
    font-family: 'Quicksand',sans-serif;
    padding-top: 5rem;
    width: 100vw;
}
html{
    padding:0;
    margin: 0;
}
::-webkit-scrollbar{
    display: none;
}
nav{
    display: flex;
    flex-direction: row;
    width: 100%;
    position: fixed;
    top: 0;
    align-items: center;
    background: var(--bg);
    justify-content: space-between;
    padding: 0.25rem;
}
nav .jamie{
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}
nav .jamie img{
    height: 50px;
    width: 50px;
    border-radius: 50%;
}
nav a{
    text-decoration: none;
    font-size: 1.4rem;
    color: var(--text-color)
}
nav .links{
    width: 70%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: space-evenly;
}
nav .burger-menu{
    width: 50px;
    height: 50px;
    display: none;
    background-color: none;
    border: none;
    margin-right: 25px;
}
nav .burger-menu img{
    width: 100%;
    height: 100%;
}
.burger-link {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    row-gap: 2rem;
}
.burger-link a{
    text-decoration: none;
    font-size: 2rem;
    color: black;
}
.burger-link .burger-exit{
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: rgb(253, 71, 71);
    font-weight: 800;
    text-align: center;
    padding: 10px;
    font-size: 1rem;
    border-radius: 50%;
    border: none;
    color: white;
}
@media only screen and (max-width:900px){
    nav .links{
        display: none;
    }
    nav .burger-menu{
        display: block;
    }
}