* {
    box-sizing: border-box;
}
  
body {
    background-color: #669999;
    padding: 20px;
    font-family: Arial;
}

html,
body {
  overflow-x: hidden;
  /* To prevent Horizontal scroll */
}
  
html {
    font-size: 16px;
    font-family: 'Indie Flower', sans-serif;
    line-height: 1.5;
}
  
.container {
    font-family: 'Indie Flower';
    width: auto;
    margin: auto;
    height: auto;
    padding: 0px 0px 0px 0px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: left;
    align-items: left;
}
  
  
  /*Links*/
a:link {
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: #e6e6e6;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: #006666;
    background-color: transparent;
    text-decoration: none;
}

a:active {
    color: #e6e6e6;
    background-color: transparent;
    text-decoration: none;
}
  /* Header/Site Title */
    
#hero {
    height: 10%;
    color: #e6e6e6;
    text-shadow: 2px 2px 5px #2a2a2a;
    position: relative;
}
  
  
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
  
  /* Center website */
.main {
    /*max-width: 1000px;*/
    max-width: 800px;
    margin: auto;
    margin-top: 2px;
}
  
h1 {
    font-size: 50px;
    text-align: left;
    /*word-break: break-all;*/
}
  
  
  /* Content */
.content {
    background-color: white;
    padding: 15px;
    font-family: 'Indie Flower';
}
  
.content ul{
    margin-top: 5px;
    font-size: 28px;
    text-decoration: none;
    color: black;
}
  
.content h3 {
    font-size: 42px;
    position: relative;
    margin-top: 10px;
    margin-bottom: 5px;
    padding-bottom: 0px;
}
  
.content p {
    font-size: 24px;
    position: justify;
    margin-top: 10px;
    margin-bottom: 5px;
    padding-bottom: 0px;
}

.content a {
    color: black;
}

.content a:hover {
    text-decoration: underline;
    text-transform: bolder;
}

.content img{
    width:100%;
    max-height: auto;
    position: relative;
}

.doves {
    width:200px;
    max-height: auto;
    position: absolute;
    opacity: 0.8;
}

.woodpekers {
    width:200px;
    max-height: auto;
    position: absolute;
    opacity: 0.8;
}

.guacamayas {
    width:250px;
    max-height: auto;
    position: absolute;
    opacity: 0.8;
}

.hummingbirds {
    width:250px;
    max-height: auto;
    position: absolute;
    opacity: 0.8;
}


/* Properties for each dove*/
#Bird1 {
    top: 40%;
}

#Bird2 {
    top: 60%;
}

#Bird3 {
    top: 90%;
}


.topnav {
    /*display: flex;*/
    overflow: hidden;
    background-color: #669999;
}

.topnav a {
    float: left;
    display: block; /*New*/
    color: #f2f2f2;
    text-align: center;
    font-family: 'Indie Flower';
    width: auto;
    font-size: 32px;
    padding: 14px 16px;
    text-decoration: none;
}

.topnav .icon {
    display: none;
  }

  
/* Change color on hover */
.topnav a:hover {
    background-color: #669999;
    color: #006666;
}
  
@media screen and (max-width: 680px) {
    .clearfix {
        display: none;
    }
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
        float: right;
        display: block;
    }
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
    .topnav a{
        font-size: 26px;
    }
}
  
@media screen and (max-width: 680px) {
    .container h1{
        font-size: 32px;
    }

    .content p {
        font-size: 22px;
    }

    .content ul{
        font-size: 24px;
    }

    .content h3 {
        font-size: 26px;
    }
    .content img{
        width:100%;
        max-height: auto;
        position: relative;
    }

    .doves {
        width:60px;
        visibility: hidden;
    }
  
    .woodpekers {
        width:100px;
        visibility: hidden;
    }

    .guacamayas {
        width:150px;
        visibility: hidden;
    }

    .hummingbirds {
        width:150px;
        visibility: hidden;
    }

}

@media screen and (max-width: 380px) {
    .content h3 {
        font-size: 26px;
    }

    .content ul{
        font-size: 20px;
    }

    .content p{
        font-size: 20px;
    }

}