body {
    background-image: url("images/web-bg.png");
    background-size: 100%;
    background-repeat: repeat-y;
    margin: 0;
    padding: 0;
    width:100%;
    color: #046582;
    font-family: 'Ubuntu', sans-serif;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4em;
    background-color:#fce4d4;
    padding: 0 14px;
    margin-top: 24px;
}
div,p,h1,h2,h3,img,a,li,ul{
    margin: 0;
    padding: 0;
}

#menu-burger{
    display: none;
}
#menu-burger-two{
    display: none;
}
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fce4d4;
    width: 100%;
    position:fixed;
    top:0;
    margin: 0;
    padding: 0;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
#navbar ul {
    display: flex;
    align-items: center;
    list-style-type: none;
}
#nav-text li a {
    color: #046582;
    font-size: 22px;
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: all 0.4s;
}
/* Change the link color to #046582 on hover */
#nav-text li a:hover {
    background-color: #046582;
    color: #fce4d4;
    cursor: pointer;
}
#navbar img {
    height: 28px;
    padding: 0;
    margin: 0 5px;
}
#navbar #small-logo {
    height: calc(1em + 28px);
    margin-right: 10px;
}

#logo-container {
    position: static;
    background-color: #333;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 73px 0 18px 0;
    width: 100%;
}

.image-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 5% 0;
    height: 250px;
 }
.image-container img {
    width:250px;
    height:250px;
    margin: 2%;
    transition: all 0.3s;
    cursor: pointer;
}
.image-container img:hover {
    margin: auto 3%;
    filter: drop-shadow(0 10px 4px #999);
    transform: scale(1.25);
}

.about-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}
.about-container iframe {
    margin: 2% 0;
    min-width: 650px;
    min-height: 337px;
    border: none;
    border-radius: 20px;
    filter: drop-shadow(0 0 5px #999);
}
.about-container div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 650px;
    margin: 2%;
    overflow: auto;
    inline-size: 35%;
}

.services-container{
    width: 100%;
}
.services-container div{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.services-container div div{
    display: flex;
    min-height: 250px;
    width: 46%;
    margin: 0 2%;
    padding: 0 1%;
}
.services-container img{
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 6px 2px #999);
}
.services-container h1{
    display: none;
}

#contact-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
#contact-box tr{
    list-style-type: none;
    font-size: 150%;
}

.pink-box {
    border-radius: 20px;
    background-color: #fce4d4;
    filter: drop-shadow(0 0 5px #999);
}
.pink-box p{
    margin: 20px;
    font-size: 150%;
    overflow: auto;
}
.pink-box h1{
    margin-top: 20px;
    font-size: 250%;
    filter: drop-shadow(0 6px 2px #999);
}

.big-title {
    display: flex;
    justify-content: center;
    color: #6E7582;
    font-size: 500%;
    filter: drop-shadow(0 6px 2px #999);
}

@media only screen and (max-width: 640px){
    body{
        font-size: 80%;
    }

    #menu-burger-two{
        display: flex;
    }

    #menu-burger{
        display: flex;
        width: 100%;
        position: fixed;
        background-color: #BB8082;
        z-index:2;
        align-items: center;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    }
    #menu-burger img{
        width: 28px;
        height: 28px;
        padding: 0;
        margin: 0 5px;
    }
    #menu-burger div{
        display: flex;
        height: calc(1em + 28px);
        background-color: #fce4d4;
        flex:1;
        justify-content: end;
    }
    #menu-burger div img{
        height: calc(1em + 28px);
        width: unset;
        margin-right: 10px;
    }
    #navbar {
        display: none;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        background-color: #BB8082;
        height: 100%;
        width: 200px;
        position:fixed;
        left:0;
        z-index: 2;
    }
    #navbar #nav-icons{
        justify-content: space-between;
        width: 100%;
        padding: 0.5em 0;
    }
    #navbar #small-logo {
        margin: 0;
    }
    #navbar #nav-text {
        flex-direction: column;
    }
    #nav-text li a{
        width: 200px;
        padding: 14px 0;
        margin: 0;
        color: white;
    }
    #smol {
        display:none;
    }

    #logo-container{

    }

    .image-container {
        display: none;
    }

    #logo-container img{
        width: 300px;
    }

    .about-container iframe{
        margin: 20px 0;
        min-width: unset;
        width: 350px;
        min-height: 197px;
    }
    .about-container div{
        margin: 1% 0;
        min-width: 350px;
    }

    .services-container div{
        flex-direction: column;
    }
    .services-container div div{
        width: 350px;
    }
    .services-container img{
        display: none;
    }
    .services-container h1{
        display: flex;
    }
}
@media only screen and (max-width: 800px){
    .image-container {
        height: 200px;
     }
    .image-container img {
        width:200px;
        height:200px;
    }
}
