body {
    font-size: clamp(14px, 5vw, 18px);
}
header,
#footer{
    display: none;
}
#landing{
    width: 100%;
    height: 100dvh;
}
#landing .main_img{
    width: 100%;
    height: 100%;
}
#content{
    padding-bottom: 0 !important;
    position: relative;
}
.google_login{
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%);
    /* background: #fff; */
    background: #9a1d33;
    border-radius: 32px;
    height: 7%;
    width: 341px;
    height: 63px;
    display: flex;
    align-items: center;
    place-content: center;
    text-align: center;
    cursor: pointer;
    gap: 16px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 30px 0px;
}
.google_login p{
    /* color: #000; */
    color: #fff;
}
.google_login img{
    width: 25px;
    height: 25px;
}
@media screen and (max-width: 499px){
    .google_login{
        width: 80%;
        font-size: 15px;
    }
}