*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Slab', sans-serif;
}

body{
    overflow: hidden;
}

.main{
    display: flex;
    align-items: end;
    justify-content: center;
}

.canvas{
    height: 100vh;
    width: 100%;
    box-shadow: inset 0px 0px 150px -50px black;
    background-image: url(https://polaris-app-git-main-harshs-projects-12d1c343.vercel.app/static/img/bg.jpg);
    background-position: center;
    background-size: cover;
    z-index: 5;
}

.panel{
    position: absolute;
    z-index: 10;
    padding: 10px 20px;
    height: min(40vh, 300px);
    width: min(100%, 400px);
    border-top-left-radius: 5%;
    border-top-right-radius: 5%;
    background-color: rgba(255, 255, 255, 0.75);
    box-shadow: 3px 0px 30px -25px black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.panel h1{
    margin-top: 10px;
    font-family: 'Chakra Petch';
}

.panel-blocker{
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
}

/* .set-alarm{display:none;} */
 .play-alarm{
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    font-size: 18px;
}
.start-alarm{
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    font-size: 18px;
}

.destination{
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.destination input{
    height: 30px;
    width: 80%;
    margin: 10px 0px;
    padding: 4px 10px;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid rgb(71, 71, 71);
    box-shadow: 3px 0px 30px -25px black;
}

.travel-medium{
    display: inline-flex;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgb(71, 71, 71);
    box-shadow: 3px 0px 30px -25px black;
}

.radio-input{
    display: none;
}

.radio-input:checked + .radio-label{
    background-color: deepskyblue;
}

.radio-label{
    padding: 4px 10px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.1s;
}

.radio-label:hover{
    background-color: powderblue;
}

.radio-label:not(:last-of-type){
    border-right: 1px solid rgb(71, 71, 71);
}

.set-btn{
    margin-top: 20px;
    display: block;
    background-color: white;
    padding: 4px 10px;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid rgb(71, 71, 71);
    box-shadow: 3px 0px 30px -25px black;
}

.set-btn:hover{
    cursor: pointer;
    background-color: tomato;
    transition: 0.1s;
}

.audio{
    display: none;
}