#option {
    display: flex;
    flex-direction: row;
    > * {
        padding: 15px 30px;
        background-color: #23c1a7;
        color: black;
        margin: 0px 50px 0px 50px;
        text-decoration: none;
        border-radius: 10px;
    }
}

#video {
    body {
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #overlay {
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.25);
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
    }
    a {
        text-decoration: none;
        font-size: 50px;
    }
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

section {
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        > * {
            margin: 10%;
        }
        label {
            font-size: 50px;
        }
    }
}

input[type="date"] {
    padding: 10px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    border: 2px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

input[type="date"]:focus {
    border-color: #007bff; 
    outline: none;
}

button {
    padding: 15px 40px;
    background-color: #23c1a7;
    color: black;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 20px;
}

button:hover {
    background-color: #0f8975;
    color: white;
}

a:hover {
    background-color: #0f8975;
    color: white;
}