html{}

body{ margin:0; } /* Remove body margins */

.title{
    background-color: #1E252A;
    padding-top: 25px;
    padding-bottom: 18px;
    text-align: center;
}

.title button{
    font-family: 'Italiana', serif;
    color:white;
    text-align: center;
    font-style: normal;
    font-weight: normal;
    font-size: 40px;
    letter-spacing: 0.03em;
    background-color: #1E252A;
    width: fit-content;
}

.title button:hover, .title button:active{
    color:#6291b1;
    background-color: #1E252A;
}

h1, p, h2{
    font-family: 'Maitree', serif;
}
h2{
    font-size:13px;
}
p{
    font-size: 12px;
}

/* nav */
.dropup{
    display:none;
}

.nav{
    background: #A6B4BE;
    height: 30x;
    width: 100%;
    text-align: center;
}

button{
    font-family: 'Abel', sans-serif;    
    width: 18%;
    display: inline-block;
    border: none;
    padding: 2rem 2rem;
    background-color: #A6B4BE;
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
}

button:hover, button:active{
    background-color: white;
    color:#1E252A;
}

/* carousel */
.mySlides {display:none}
.w3-left, .w3-right, .w3-badge {cursor:pointer}
.w3-badge {height:13px;width:13px;padding:0}
img{
    object-fit: cover;
    height: 550px;
}

/* line break top */
.line-break1 img{
    margin-top: 50px;
    margin-bottom: 30px;
    width: 100%;
    height: 40px;
    object-fit:scale-down;
}

/* line break bottom */
.line-break2 img{
    margin-top: 30px;
    margin-bottom: 50px;
    width: 100%;
    height: 40px;
    object-fit:scale-down;
}


.body-text{
    margin-left: 30%;
    margin-right: 30%;
}

.info{
    display:grid;
    grid-template-columns: 5fr 5fr;
}

.basic-info, .about{
    align-items: center;
}

.basic-info, .basic-info-text{
    float:left;
}

.basic-info{
    margin-top: 3pt;
}

.basic-info h2, .basic-info-text p{
    font-size: 11pt;
}

.basic-info h2{
    line-height: 1.3rem;
}

.basic-info-text p{
    line-height: 1.15rem;
}

.basic-info *{
    text-align: left;    
}

.about p{
    font-size: 12pt;
    line-height: 1.5rem;
}

.about h1{
    font-size: 14pt;
    text-align: center;
    letter-spacing: 0.3rem;
}

/* footer */
.footer{
    background-color: #1E252A;
    padding-top: 25px;
    padding-bottom: 18px;
    height: 110px;
}
.footer footer{
    font-family: 'Abel', sans-serif;    
    color:white;
    padding-left: 30%;
    text-align: left;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
}



@media screen and (max-width: 896px) {
    .body-text{
        margin-left: 10%;
        margin-right: 10%;
    }
    .footer footer{
        padding-left: 10%;
    }
    img{
        height: 400px;
    }
}


@media screen and (max-width: 650px) {

    img{
        height: 300px;
    }

    .nav{
        display:none;
    }
    .dropup{
        display:block;
    }

    /* Dropup Button */
    .dropbtn {
        min-width: 130px;
        background-color: #93abbb;
        color: white;
        padding: 16px;
        font-size: 16px;
        border: none;
    }
  
    /* The container <div> - needed to position the dropup content */
    .dropup {
        object-position: top;
        display: block;
    }
  
    /* Dropup content (Hidden by Default) */
    .dropup-content {
        display: none;
        /* position: static; */
        bottom: 130px;
        background-color: #f1f1f1;
        min-width: 130px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }
    
    /* Links inside the dropup */
    .dropup-content button {
        color: rgb(255, 255, 255);
        padding: 12px 12px;
        text-decoration: none;
        display: block;
        width: 100%;
    }
    
    /* Change color of dropup links on hover */
    .dropup-content button:hover {background-color: #ddd}
    
    /* Show the dropup menu on hover */
    .dropup:hover .dropup-content {
        display: flow-root;
        position: absolute;
        top: 207px;
        height: 200px;
    }
    
    /* Change the background color of the dropup button when the dropup content is shown */
    .dropup:hover .dropbtn {
        background-color: #859cac;
    } 
}