html{
    margin: 50px;
    min-width: 400px;
}

body{
    background-color: #F5F5E1;
}
/* Navbar Styling */
nav{
    display: flex;
    font-family:'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif;
    justify-content: space-between;
}

nav ul{
    display: flex;
    list-style: none;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.nav-items li{
    margin: 20px;
    font-size: 20px;
}

.nav-items li a{
    text-decoration: none;
    color: rgb(47, 47, 47);
}

.logo{
    margin-right: auto;
    font-size: 50px;
    margin-bottom: 0px;
}

.sup-text{
    font-size: 20px;
    margin-top: 0px;
}

/* Body Styling */
.contact-el{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-el li{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: auto;
    padding: 20px;
    margin: 10px;
    background: #d5ddff;
    border-radius: 6px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.contact-el li:hover{
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.contact-el li img{
    width: 50px;
    margin-right: 20px;
}

.contact-el li a{
    color: black;
}

#details h1{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 40px;
    text-align: center;
}