*,
*:before,
*:after {
    box-sizing: border-box;
}

@font-face {
    font-family: "Kumbh Sans", serif;
    src: url(/fonts/Kumbh_Sans/KumbhSans-VariableFont_YOPQ\,wght.ttf);
}

@font-face {
    font-family: "Arima", serif;
    src: url(/fonts/Arima/Arima-VariableFont_wght.ttf);
}

html {
    font-size: 16px;
}
body{
    margin:0;
    padding: 0;
    font-family: "Kumbh Sans", serif;
    background-color: black;
}
main{
    overflow: hidden;
    height: 100vh; 
}

label {
    display: block; 
}

input, select, textarea {
    width: 100%; 
    padding: 10px; 
    border: 1px solid #ccc; 
    border-radius: 10px; 
}

.reservation{
    opacity: 0;
    position: absolute;
    top: 15%;
    left: 8%;
    font-size: 14px;
    line-height: 22px;
}

input::placeholder{
    color: lightgray;
}

.hdrSyle {
    font-family: "Arima";
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.reserve{
    font-family: "Arima";
    width: 200px;
    border-radius: 10px;
    margin-top:20px;
    border: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Media queries */
/* Phone viewport */
@media (max-width: 480px) {
    main {
        height: 100vh;
    }
    object {
        height: 100vh; 
        width: auto;   
        display: block;
        margin: 0 auto;     
    }
    .reservation {
        left: 50%; 
        transform: translateX(-50%); 
    }
}

/* Tablet viewport */
@media (min-width: 481px) and (max-width: 767px) {
    main {
        height: 100vh;
    }
    object {
        height: 100vh; 
        width: auto; 
        display: block;
        margin: 0 auto;
    }

    .reservation {
        left: 50%; 
        transform: translateX(-50%); 
    }
}

/* Desktop viewport */
@media (min-width: 768px) {
    main {
        height: 100vh;
    }
    object {
        height: 100vh; 
        width: auto;
        display: block;
        margin: 0 auto;
    }
    .reservation {
        left: 50%; 
        transform: translateX(-50%); 
    }
}