html{
    width: 100vw;
    overflow-x: hidden;
}
body{
    margin: 0;
    left: 0;
    position: relative;
    width: 100vw;
    overflow-x: hidden;
    font-family: "Palatino", serif;
    text-align: center;
}
h1{
    position: relative;
    height: 80%;
    line-height: 1800%;
    background: linear-gradient(179deg, rgba(15, 12, 111, 0.5), rgba(0, 0, 0, 0)), linear-gradient(143deg, rgba(100, 174, 255, 0.5), rgba(0, 0, 0, 0)), linear-gradient(287deg, rgba(100, 196, 155, 0.5), rgba(0, 0, 0, 0));
}
#Group{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
form{
    width: 580px;
    margin: 0 30px;
    text-align: start;
}
label{
    display: inline-block;
    width: 180px;
    vertical-align: top;
}
input{
    width: 395px;
    height: 25px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #ccc;
    backdrop-filter: blur(23px);
    font-size: 16px;
    transition: 0.5s;
    font-family: "Palatino", serif;
}
textarea{
    resize: vertical;
    width: 395px;
    min-height: 180px;
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid #ccc;
    backdrop-filter: blur(23px);
    font-size: 16px;
    transition: 0.5s;
    font-family: "Palatino", serif;
}
input:focus{
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0px 0px 10px 0px #fff;
    outline: 0;
}
textarea:focus{
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 0px 10px 0px #fff;
    outline: 0;
}
#Submit{
    position: relative;
    margin: auto;
    width: 100px;
    height: 50px;
}
#SubmitBody{
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 50px;
    background: linear-gradient(179deg, rgba(15, 12, 111, 0.38), rgba(0, 0, 0, 0)), linear-gradient(143deg, rgba(100, 174, 255, 0.38), rgba(0, 0, 0, 0)), linear-gradient(287deg, rgba(100, 196, 155, 0.38), rgba(0, 0, 0, 0));
    border: none;
    box-shadow: 0px 0px 18px 0px #c3ceff;
    z-index: 10;
    font-family: "Palatino", serif;
    font-size: 1.08em;
    transition: 1s;
}
#SubmitBack1{
    position: absolute;
    margin: auto;
    width: 100px;
    height: 50px;
    background: #8390fc;
    opacity: 0.3;
    left: 18px;
    top: 18px;
    z-index: 1;
    filter: blur(5px);
    transition: 1s;
}
#SubmitBack2{
    position: absolute;
    margin: auto;
    width: 100px;
    height: 50px;
    background: #0ae9d5;
    opacity: 0.3;
    left: -18px;
    top: -18px;
    z-index: 1;
    filter: blur(5px);
    transition: 1s;
}
#Submit:hover #SubmitBody{
    box-shadow: 0px 0px 23px 5px #77a8ff;
}
#Submit:hover #SubmitBack1{
    top: 0;
    left: 0;
    filter: blur(0);
}
#Submit:hover #SubmitBack2{
    top: 0;
    left: 0;
    filter: blur(0);
}
td{
    padding: 13px;
    border: solid 1px #a1aeb3;
    backdrop-filter: blur(8px);
}
#Schedule{
    width: 500px;
    height: 585px;
}
#ScheduleTable{
    position: relative;
    border-collapse: collapse;
    border-spacing: 0;
}
#ReservationCalender{
    width: 500px;
    height: 500px;
}
#Loading{
    background-image: linear-gradient(179deg, rgba(15, 12, 111, 0.8), rgba(0, 0, 0, 0)), linear-gradient(143deg, rgba(100, 174, 255, 0.8), rgba(0, 0, 0, 0)), linear-gradient(287deg, rgba(100, 196, 155, 0.8), rgba(0, 0, 0, 0));
}
#ShowDisplay{
    background: linear-gradient(179deg, rgba(15, 12, 111, 0.38), rgba(0, 0, 0, 0)), linear-gradient(143deg, rgba(100, 174, 255, 0.38), rgba(0, 0, 0, 0)), linear-gradient(287deg, rgba(100, 196, 155, 0.38), rgba(0, 0, 0, 0));
    backdrop-filter: blur(8px);
    padding-top: 20px;
    height: 65px;
}
.CalenderButton{
    background: none;
    border: none;
    box-shadow: 0px 0px 10px 0px #58609d;
    border-radius: 30%;
}
#TimeandDate{
    background: rgba(207,224,230,0.5);
    font-size: 0.8em;
}
.Day{
    background: rgba(207,224,230,0.5);
}
.Time{
    background: rgba(217,234,240,0.5);
}
.ReservationCell{
    background: #5b6c96;
}
@media screen and (max-width:639px){
    form{
        width: 100%;
    }
    input{
        width: 100%;
    }
    textarea{
        width: 100%;
    }
}
@media screen and (max-width:499px){
    #Schedule{
        width: 100%;
    }
    #ReservationCalender{
        width: 100%;
    }
}
@media screen and (max-width:351px){
    h1{
        font-size: 1.3em;
        height: 50%;
    }
}