/*Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-size: 25px;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    line-height: 44px;
    background-color: #3CE943;
    /*text-align: center; */
}

header {
    width: 100%;
    height: 100px;
    background-color: rgb(0, 255, 166);
    padding: 20px;
}
#logo{
    display: inline-block;
    position: absolute;
}
nav {
    position: absolute;
    right: 0px;
    top: 30px;
}

main {
    background-color: white;
    border-radius: 25px;
}

nav ul li {
    display: inline-block;
    margin-right: 30px;
}

section {
    background-color: blueviolet;
    border-radius: 25px;
    text-align: center;
}
aside{
    background-color: #3CE943;
}
.grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
}
#contact{
    text-align: center;
}
.interest-1{
    position: relative;
    margin:0 auto;
}
.interest-2{
    position: relative;
}
.interest-3{
    position: relative;
}
p{
    font-size: 24px;
}

h3{
    color: black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    letter-spacing: 2px; 
    text-shadow: 2px 2px white;
    text-align: center;
}

footer {
    background-color: white;
    padding: 20px;
    text-align: center;
}


#banner{
    background-image: url(../img/Banner.png);
    background-size: cover;
    width: 2250px;
    height: 400px;
}
@media screen and (max-width:500px){
    nav{
        font-size: 30px;
        left: 0px;
    }
    header {
        height: 140px;
    }
    
}