#section-reservation {
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    padding: 2vh 25vw;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#section-reservation a {
    cursor: pointer;
    font-family: 'Inconsolata';
    font-size: 1.3vw;
    color: black;
    font-weight: bold;
}

#section-reservation h3 {
    font-family: 'Inconsolata';
    font-size: 2vw;
    color: #333333;
    margin-bottom: 1vh;
}

#section-reservation form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    
    margin-top: 3vh;
    margin-bottom: 3vh;
}

#section-reservation form label {
    font-family: 'Inconsolata';
    font-size: 1.3vw;
    color: #333333;
    margin-top: 2vh;
}

#section-reservation form input {
    width: 100%;
    box-sizing: border-box;
    padding: 0 0.5vw;
    height: 2.5vw;
    margin-top: 1vh;
    font-family: 'Inconsolata';
    font-size: 1.3vw;
    color: #333333;
}

#section-reservation form #rules {
    width: 2vw;
    height: 2vw;
    box-sizing: border-box;
    padding: 0;
    margin-top: 2vh;
}

#section-reservation form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 1vh 0.5vw;
    height: 5vw;
    margin-top: 1vh;
    font-family: 'Inconsolata';
    font-size: 1.3vw;
    color: #333333;
    resize: vertical;
}

#section-reservation form select {
    width: 100%;
    box-sizing: border-box;
    padding: 0 0.5vw;
    height: 2.5vw;
    margin-top: 1vh;
    font-family: 'Inconsolata';
    font-size: 1.3vw;
    color: #333333;
}

#section-reservation form button {
    margin-top: 3vh;
    cursor: pointer;
    font-family: 'Inconsolata';
    font-size: 1.3vw;
    color: #333;
    
    border: 1px solid #333;
    padding: 1vh 2vw;
    background-color: #ffffff;
    transition: 0.3s;
}

#section-reservation form button:hover {
    background-color: #333333;
    color: #ffffff;
}

#section-reservation #checkbox-row {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#section-reservation h2 {
    font-family: 'Inconsolata';
    font-size: 2vw;
    color: #333;
    align-self: flex-start;
    
    margin: 3vh 0 1vh 0;
}

#section-reservation p {
    font-family: 'Inconsolata';
    font-size: 1.3vw;
    color: #333;
    
    margin-bottom: 3vh;
}

@media only screen and (max-width: 1024px) {
    
    #section-reservation {
        padding: 2vh 5vw;
    }

    #section-reservation a {
        font-size: 4vw;
    }

    #section-reservation h3 {
        font-size: 5vw;
    }

    #section-reservation form label {
        font-size: 4vw;
    }

    #section-reservation form #rules {
        width: 5vw;
        height: 5vw;
    }

    #section-reservation form input {
        padding: 0 2vw;
        height: 7vw;
        font-size: 5vw;
    }
    
    #section-reservation form textarea {
        padding: 1vh 2vw;
        height: 30vw;
        font-size: 5vw;
    }

    #section-reservation form select {
        padding: 0 2vw;
        height: 7vw;
        font-size: 5vw;
    }

    #section-reservation form button {
        font-size: 5vw;
    }
    
    #section-reservation h2 {
        font-size: 5vw;
    }

    #section-reservation p {
        font-size: 4vw;
    }
    
}