#title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
        h1, #instructions-toggle {
        font-size: 30px;
        @media (min-width: 700px) {
            font-size: 45px;
        }
        @media (min-width: 1200px) { 
            font-size: 50px;
        }
    }
}

#instructions-toggle {
    border: 1px solid black;
    margin-left: 10px;
    z-index: 10;
}

#instructions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    width: 80vw;
    border: 1px solid black;
    background-color: #e4e4e4;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    h2 {
        text-align: center;
        margin: 0;
        font-size: 25px;
        @media (min-width: 700px) {
            font-size: 45px;
        }
        @media (min-width: 1200px) { 
            font-size: 50px;
        }
    }
}

#instructions-list {
    font-size: 22px;
    padding-left: 20px;
    @media (min-width: 700px) {
        font-size: 30px;
        padding-left: 40px;
    }
    @media (min-width: 1200px) { 
        font-size: 40px;
        padding-left: 50px;
    }
    li {
        padding-bottom: 10px;
    }
}