    *{
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body{
        font-family: "Libertinus Mono", monospace;
    }

    .hero{
        text-align: center;
        padding: 20px;
        height: 100vh;
        background-color: slateblue;
        color: aliceblue;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero > h1{
        margin: 20px;
        padding: 20px;
        font-size: 64px;
    }

    .hero > p{
        font-size: 18px;
    }

    .hero > a{
        text-decoration: none;
        display: inline-block;
        margin: 50px;
        border: 2px solid whitesmoke;
        background-color: pink;
        padding: 20px;
        font-weight: bold;
    }

    .material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
    }

    header > button{
        position: fixed;
        top: 0;
        right: 0;
        margin: 20px;
        padding: 20px;
        cursor: pointer;
        background-color: rgba(0, 0, 0, 0);
        border: none;
    }

    button .material-symbols-outlined{
        font-size: 48px;
        color: white;
    }

    #close{
        display: none;
    }

    nav{
        position: fixed;
        top: 0;
        margin: 30px;
        padding: 20px;
        background-color: white;
        transform: translateX(500px);
        z-index: 999;
    }

    nav > a{
        text-decoration: none;
    }


    @media screen and (max-width: 480px){
        nav{
            transform: translate(0);
            display: block;
            transform: scale(0.8);
        }
    }

    #algo{
        background-color: slateblue;
        color: whitesmoke;
        padding: 20px;
        height: 100vh;
    }
    #algo > h1{
        text-align: center;
        font-size: 64px;
    }

    .algo-container{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .algo-container > div{
        width: 200px;
        height: 200px;
        border: 2px solid white;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        background-color: white;
        color: slateblue;
    }

    .algo-container > div > h2{
        text-align: center;
    }

    @media screen and (max-width: 480px) {
        .algo-container > div{
            width: 100%;
            height: 100px;
            margin: 2px;
        }
        .algo-container{
            padding: 20px;
        }
        #algo{
            padding: 20px;
        }
        #algo > h1{
            font-size: 48px;
        }
    }

    /* Modal styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    position: relative;
}

.modal-content input {
    margin: 15px 0;
    padding: 10px;
    width: 80%;
}

.modal-content button {
    padding: 10px 20px;
    background-color: slateblue;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 10px;
}

.modal-content .material-symbols-outlined {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

#menu{
    display: none;
}

