@font-face{
    font-family: domine;
    src: url(./assets/Domine/static/Domine-Regular.ttf);
}
body{
    font-family: domine;
}
:root{
    --mib: #11293B;
    --tertiary: #dea300;
}

.book-btn{
    font-size: 16px;
    box-shadow: none;
    background-color: var(--mib);
    color: #f5f5f5;
    width: 165px;
    height: 46px;
    transition: font-size .3s ease, width .3s ease, height .3s ease, background-color .3s ease, color .3s ease;
}

.book-btn:hover{
    font-size: 19px;
    width: 175px;
    height: 56px;
    background-color: var(--tertiary) ;
    color: var(--mib);
}

.navbar{
    background-color: #11293B;
}

.navbar a {
    color: white;
}
.navbar button{
     background-color: white;
}

.btn-mib{
    color: white;
    background-color: #11293B;
}
.btn-mib:hover{
    color:#11293B;
    background-color: white;
    border: solid 2px #11293B;
}

.wrapper{
    padding: 0 1rem;
}
.container{
    margin: 3rem auto;
    border: 0px solid gray;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.3);
}
.row{
    padding: 20px;
    width: 100%;
    text-align: center;
}
.row h2{
    padding: 2rem 0rem;
}

.row h3{
    text-decoration: underline;
    padding-top: 1rem;
    padding-bottom: 3rem;
}
.send-us{
    padding-top: 1%;
    width: 100%;
    text-align: center;
}
.send-us p{
    font-size: 18px;
}

.book-box{
    padding: 2rem;
    width: 100%;
    text-align: center;
}

.footer{
    z-index: 100;
    position: static;
    bottom: 0px;
    width: 100%;
    font-size: 20px;
    background-color: #11293B;
}
.footer>.row{
    margin: 0rem 0rem;
}


@media only screen and (min-width: 374px) and (max-width: 500px){
    .container{
        padding-left: 10%;
    }

    .footer{
        font-size: 12px;
    }
}