* {
    font-family: 'SF Pro Display', serif;
    margin: 0;
    padding: 0;
    background-color: #010101;
    color: white;
    text-decoration: none;
    font-weight: 500;
}

section {
    text-align: center;
}

h1{
    text-align: center;
    font-size: 4em;
    padding: 0;
}

main {
    display: flex;
    height: 75vh;
}

input {
    width: 100%;
    font-weight: 500;
    font-size: 3em;
    text-align: center;
    border: none;
    outline: none;
}

#left {
    width: 50%;
}

#right {
    width: 50%;
}

footer {
    height: 5vh;
    text-align: center;
}

footer button {
    padding: 10px;
    border: 2px solid white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 17px;
    margin-left: 10vmax;
    margin-right: 10vmax;
}

footer input {
    padding: 10px;
    border: 2px solid white;
    border-radius: 10px;
    font-size: 17px;
}

select{
    padding: 10px;
    border: 2px solid white;
    border-radius: 10px;
    cursor: pointer;
}

div {
    display: none;
}

p {
    padding-bottom: 10px;
}

@media(max-width: 1000px) {
    body {
        margin-top: 20px;
    }

    main {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        height: auto;
    }

    #left,
    #right {
        width: 100%;
    }

    #timeInputOne,
    #timeInputTwo {
        font-weight: 700;
        font-size: 8ex;
        text-align: center;
        border: none;
        cursor: pointer;
    }

    #dateInputOne,
    #dateInputTwo {
        text-align: center;
        font-weight: 500;
        font-size: 4ex;
        border: none;
        cursor: pointer;
    }

    .flatpickr-mobile[type='date']:focus,
    .flatpickr-mobile[type='time']:focus {
        border: none;
    }

    p {
        padding: 0;

    }

    footer {
        display: block;
    }

    footer input {
        display: none;
    }
    footer button{
        margin-top: 2vh;
    }
}