* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;  
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: #E6E8E8;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.navbar {
    position: fixed;
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    z-index: 1;
    /* border: #22404E 2px solid; */
}




.navbar img {
    width: 25%;
    margin-top: 40px;
    margin-left: 20px;
}

.navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-right: 20px;
}

.navbar ul li {
    list-style: none;
}

.navbar ul li a {
    padding: 10px 18px;
    border-radius: 5px;
    font-family: sans-serif;
    font-size: 16px;
    color: #22404E;
    text-decoration: none;
}

.navbar ul li a:hover {
    color: #fff;
    background-color: #4F9D97;
}


.hero {
    position: absolute;
    width: 100%;
    height: 90%;

    display: flex;
    justify-content: center;
    align-items: center;

   
    /* border: green 3px solid; */
}


.content {
    position: absolute;
    
    width: 80%;
    height: 90%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    bottom: 0;
     

    /* border: red 3px solid; */
}

.content img {
    width: 65%;
    margin-top: 80px;
    border-radius: 25px;    
}

@media (max-width: 768px) {
    .content {
        width: 95%;
    }
    .content img {
        width: 100%;
    }
}

.content a {
    margin-top: 40px;
    text-decoration: none;
    font-size: 25px;
    display: inline-block;
    letter-spacing: 2px;
    padding: 12px 20px;
    background-color: #D86963;
    border-radius: 5px;
    color: #fff;
    ;
}

.content a:hover {
    background-color: #c7433c;
}

footer {
    width: 100%;
    height: 10%;

    position: absolute;
    bottom: 0;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}


.social_icons a{
    /* margin-top: -150px; */
    /* display: flex; */
    /* justify-content: center; */

    text-decoration: none;
}

.social_icons img {
    margin-left: 40px;
    margin-right: 40px;
}