body {
    margin: 20px 20px;
    font: 16px -apple-system, sans-serif;
    line-height: 1.333em;
    background: rgb(255,255,255);
    /* background: linear-gradient(90deg, rgba(246,245,245,1) 0%, rgba(194,194,194,1) 100%);*/
}

header {
    text-align: center;
}
h2{
    text-align: center;
}

.product-container{
    margin-bottom:50px;
    border-radius: 25px;
}

#rcorners1 {
    border-radius: 25px;
    background: #73AD21;
    padding: 20px;
    width: 200px;
    height: 150px;
  }

/*--------------- Style the navbar -------------------- */
.topnav {
    overflow: hidden;
    /* center the navbar horizontally */
    display: flex;
    justify-content: center;
    /* --------------------------- */
}

.topnav a {
    float: left;
    display: block;
    text-align: center;
    padding: 0px 16px;
    text-decoration: none;
    font-size: 17px;
    /* center links vertically */
    height: 30px;
    line-height: 30px;
    /* --------------------------- */
}

.topnav a.active {
    color: #b36200ff;
}

.topnav .icon {
    display: none;
}

/*----------------------------------------------------- */
/*----------------------------------------------------- */
img.logo {
    max-height: 100%;
    width: 30px;
    height: 30px
}

img.home {
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/* unvisited link */
a:link {
    color: #f58600ff;
    text-decoration: none;
}

a:visited {
    color: #f58600ff;
}

/* mouse over link */
a:hover {
    color: #b36200ff;
}


.main {
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    /* Same width as the sidebar + left position in px */
    padding: 10px 10px;
    width: 600px;
}

.footer {
    margin-top: 100px;
    text-align: center;
}

.footerLinks {
    margin: 0 10px;
    text-align: center;
}


* {
    box-sizing: border-box;
  }
  
  .column {
    float: left;
    width: 50%;
    padding: 15px;
  }
  
  /* Clearfix (clear floats) */
  .row::after {
    content: "";
    clear: both;
    display: table;
  }
/*---------------responsive elements for small screens -------------------- */
/*------------------------------------------------------------------------- */
@media screen and (max-width: 600px) {

    .topnav a:not(:first-child),
    .dropdown .dropbtn {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {


    .topnav {
        /* remove centering the navbar horizontally */
        display: block;
        justify-content: flex-end;
        /* --------------------------- */
    }


    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
        height: auto;
        line-height: auto;
        padding: 7px 16px;
    }

    .main {
        margin: 0px;
        /* Same width as the sidebar + left position in px */
        padding: 0px;
        width: auto;
    }

    .footer {
        margin-top: 30px;
        text-align: center;
    }

}

/*-----------------responsive element for youtube embed------------------ */

.iframe-container{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    height: 0;
  }
  .iframe-container iframe{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
/*------------------------------------------------------------------------- */
