:root {
    --purple-navy: #5A5184ff;
    --hot-pink: #EF6FB7ff;
    --hot-pink-dark: rgb(230, 48, 151);
    --bright-navy-blue: #3F77D8ff;
    --sky-blue-crayola: #2FDCFEff;
    --green-pantone: #2DAA32ff;
    --honey-yellow: #FCB73Bff;
    --light: white;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: content-box;
    color: var(--purple-navy);
    background-image: url('./images/background.png');
    background-repeat: no-repeat;
    background-position: 100px 0;
    font-family: 'Roboto', sans-serif;
    display:flex;
    flex-direction: column;
    align-items: stretch;

    position: relative;
    min-height: 100vh;
}

.header {
    margin: 20px;
}

.top {
    display: flex;
    justify-content: space-between;
}

#menu-desktop{
    display: none;
}

#menu-mobile {
    position: relative;
    top: 0;
    left: -250px;
    transition: left 0.5s ease-out;
}

#menu img{
    width:20px;
}

ul {
    color: var(--light);
    position: absolute;
    list-style: none;
    background-color: var(--hot-pink);
    border-radius: 5px;
    padding: 20px;
    font-size: 20px;
    font-family: 'Langar', cursive;
}

 ul li {
    margin: 15px;
    padding: 5px;
    cursor: pointer;
    border: 2px solid;
    border-color: var(--hot-pink);
}

ul li:hover {
    border-color: var(--honey-yellow);
    border-radius: 10px;
}

#menu-mobile.visible {
    left: 0;
}

@media (min-width: 600px) {
    body {
        background-position: right;
        background-size: contain;
    }
}

@media (min-width: 800px) {

    #menu {
        display: none;
    }
    #menu-mobile{
        display: none;
    }
    #menu-desktop{
        display: block;
    }
    ul {
        margin: 0;
        position: initial;
        padding: 0;
        display: flex;
        background-color: unset;
    }
    .header{
        margin: 5px 90px;
    }
}