body{
    background-image: url('/images/background-img.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.rooms{
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    padding: 5% 10%;
    justify-content: space-around;
    background-color: rgba(0,0,0,0.75);
}

.rooms p {
    padding: 0px;
    margin: 0px;
    border: 0px;
    color: #C18E19;
    background-color: #04121E;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-radius: 10px;
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
}

.info-div{
    font-size: small;
    padding-top: 2%;
    color: #f9ce46;
    padding-left: 9%;
    padding-bottom: 2%;
}

.module-border-wrap {
    width: 455px;
    padding: 1rem;
    position: relative;
    background: linear-gradient(to right, rgba(193,142,25,1), rgba(193,142,25,0.13));
    padding: 3px;
    border-radius: 10px;
    margin: 15px auto;
    height: 140px;
}

.module {
    color: white;
    background-color: #04121E;
    border-radius: 10px;
    height: 100%;
}


.module>a>svg{
    margin-left: 3%;
}

.prediction_page{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.prediction_page:hover{
    text-decoration: none;
}

@media screen and (max-width: 1350px) {
    .rooms{
        padding: 5% 0;
    }

}

@media screen and (max-width: 1128px) {
    .module-border-wrap{
        width: 390px;
    }

}

/*media querries for screens smaller than 800px*/


@media screen and (max-width: 1024px) {
    .module-border-wrap{
        width: 340px;
        height: 105px;
    }

    .module p {
        font-size: 14px;
        line-height: 17px;
    }

}

@media screen and (max-width: 756px) {
    .module-border-wrap{
        width: 210px;
        height: 76px;
    }
}

@media screen and (max-width: 472px) {
    .module-border-wrap{
        width: 167px;
        height: 47px;
    }

    .module p {
        font-size: 11px;
    }

    .module svg{
        height: 15px;
    }
}