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;
}

/* Card Styling */
#res-cntr{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;

}

.res-card{
    width: 70%;
    height: auto;
    font-family:'Times New Roman', Times, serif;

    background: #c6d8af;
    margin: 20px;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.res-card:hover{
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.res-card h1{
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
}
.res-card p{
    text-align: justify;
}