body {
    background-image: url(https://i.imgur.com/EgLpLZp.png);
}
.flex-container {
border: solid 3px;
border-radius: 10px;
background-color: rgb(134, 48, 214);
height: 200px;
width: 100%;
}
#canvas1 {
height: 200px;
width: 30%;

}
#adsterra-ads {
    margin-top: 100px;
}

#adsterra-sidebanner {
    position: absolute;
    right: 30px;
    margin-top: 50px;
}

a {
text-decoration: none;
color: white;
font-size: 19px;
}
#navbar-atag {
    text-decoration: none;
    color: black;
    font-size: 19px;
    }

    #adsterra-sidebanner {
        position: absolute;
        right: 30px;
        margin-top: 50px;
    }
    
#nav-b1 {
    height: 50px;
    width: 40%;
    border-radius: 10px;
    background-color: lightblue;
}
#nav-b2 {
    height: 50px;
    width: 40%;
    border-radius: 10px;
    background-color: lightblue;
}
#navbar-b-container {
    position: absolute;
    right: 10%;
    height: 50px;
    width: 50%;
    display: flex;
    justify-content: space-between;
    top: 75px;
}
.button_of_div {
    background-color: rgb(53, 206, 53);
    height: 50px;
    width: 15%;
    border-radius: 10px;
    position: relative;
    margin-left: 575px;
}
    .head_of_div {
        display: flex;
        justify-content: center;
        text-decoration: underline;
        color: azure;
    }

.div {
height: 380px;
width: 800px;
border: solid 2px;
border-radius: 0 30px 30px 0;
margin-left: -1%;
background-color: rgb(235, 141, 19);
margin-top: 5%;
}

#navbar {
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgb(105, 29, 228);
    margin-top: 18px;
}
.nav-buttons {
    height: 50px;
    width: 100px;
    border-radius: 10px;
    background-color: lightblue;
}

/*VISIT BUTTON'S INTERACTION ANIMATIONS*/
@keyframes buttonEnter {
    0% {background-color: rgb(53, 206, 53);}
    50% {background-color: rgb(23, 156, 23);}
    100% {background-color: green}
}

@keyframes buttonLeave {
    0% {background-color: green;}
    50% {background-color: rgb(23, 156, 23);}
    100% {background-color: rgb(53, 206, 53);}    
}

/*NAVBAR BUTTON'S INTERACTION ANIMATIONS*/

@keyframes navButtonEnter {
    0% {background-color: lightblue;}
    50% {background-color: rgb(100, 170, 194);}
    100% {background-color: blue;}
  }
@keyframes navButtonLeave {
      0% {background-color: blue;}
      50% {background-color: rgb(100, 170, 194);}
      100% {background-color: lightblue;}
    }