/*CSS introduction*/
body{
    color: white;
    margin: 0px;
    font-family: "Century Gothic", Verdana, sans-serif;
    background-color: rgb(29, 76, 57);
    padding: 35px;
    --nav-height: 75px;
    padding-top: var(--nav-height);
    position: relative;
    padding-bottom: 450px;
    min-height: 100vh;
    width: 70%;
}
header{
    height: 100px;
}

#navbar{
    background: black;
    justify-content: center;
    position: fixed;
    display: flex;
    width: 100%;
    height: var(--nav-height);
    top: 0;
    left: 0;
    font-size: large;
    align-items: center;
    box-shadow: 0 0 10px rgba(rgb(1, 1, 1), rgb(1, 1, 1), rgb(1, 1, 1), 0.2);
    transition: top 0.3s;
}
#navbar a {
    display: inline-block;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-size: 15px;
    text-decoration: none;
    padding: 20px 30px;
}
#navbar a:hover {
    background-color: #AAA;
    color: white;
}
#href{
    color: rgb(9, 58, 9);
    font-style: italic;
    font-size: larger;
    font-weight: bold;
    text-align: center;
}
.h1{
    text-align: center;
    font-size: 60px;
}
.h2{
    text-align: left;
    font-size: 25px;
    font-style: bold;
    text-decoration: underline;
    text-transform: uppercase;
}

#image3{
    position: absolute;
    top: 450px;
    left: 250px;
    display: inline;
    
}
#image4{
    position: absolute;
    left: 250px;
    top: 1375px;
}
#image5{
    position: absolute;
    left: 250px;
    top: 2425px;
}



/*FOOTER*/
footer{
    text-align: center;
    color: white;
    width: 1378px;
    left: 0%;
    position: absolute;
    bottom: 0;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
.footer{
    background-color: black;
    padding: 70px;
    padding-bottom: 30px;
}
.footer-col{
    width: 25%;
    padding: 0 0px;
    text-align: left;  
}
.footer-col h1{
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
}
.footer-col h1::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: rgb(65, 55, 39);
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}
.footer-col ul li{
    margin-top: 10px;
    list-style: none;
}
.footer-col ul li a{
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: white;
    display: block;
    transition: all 0.3s ease;
}
.footer-col ul li a:hover{
    color: #ffffff;
    padding-left: 8px;
}
.footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
    color: #24262b;
    background-color: #ffffff;
}

#email2{
    border: 1rem solid;
    border-color: rgb(65, 55, 39);
    border-width: 5px;
}
