* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: linear-gradient(to bottom, #e6e3df, #fbfbfb, #fbfbfb, #fbfbfb, #fdfdfd);
}
/*=======================================================NAV PAGE==========================================================*/

nav {
    height: 60px;
    width: 100%;
    align-self: center;
}

label.logo {
    font-size: 20px;
    padding: 0px 75px;
    font-weight: bold;
    font-family: 'Inconsolata', monospace;
    line-height:90px;
}

nav ul {
    float: right;
    margin-right: 10px;
    font-family: 'Inconsolata', monospace;
    margin-left: 20px;   

}

nav ul li {
    display: inline-block;
    line-height: 60px;
    margin: 0 5px;
}

nav ul li a {
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-decoration: none;
}

a.active,
a:hover {
    background: #73bd41;
    transition: .5s;
    color: black;
}

.checkbtn {
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}


/*=======================================================MAIN==========================================================*/

main {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    margin: 5%;
}

.text {
    width: 60%;
    margin-top: 2%;
    line-height: 1.3;
}

.landing-image img {
    width: 350px;
}

.text h1 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: normal;
    font-size: 3.22em;
}

.text p {
    width: 70%;
    font-size: 1.03em;
    line-height: 1.4;
    margin-top: 6%;
    font-family: 'Times New Roman', Times, serif;
}

.landingpage-button {
    margin-top: 10%;
    width: 220px;
    padding: 15px;
    background-color: #73bd41;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    border: 0px;
    cursor: pointer;
}


/*=======================================================FOOTER==========================================================*/


.footer-container {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid black;
    margin: 6% 2% 5% 2%;
    cursor: pointer;
}

.footer-container div {
    margin-top: 3%;
}

.footer-container ul {
    list-style: none;
    font-family: 'Inconsolata', monospace;
    font-weight: bold;
}

.footer-container h1 {
    font-family: 'Kaushan Script', cursive;
    font-weight: normal;
    font-size: 25px;
    margin-top: 15%;
}

h4 {
    text-align: center;
    font-size: 13px;
    font-family: 'Inconsolata', monospace;
}

.socials a {
    text-decoration: none;
    color: black;
}

.socials a i {
    width: 40px;
}

/*=======================================================MEDIAQUERIES==========================================================*/

@media only screen and (max-width: 480px) and (min-width: 320px) {
    html,
    body {
        width: 140%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }  
     label.logo {
        font-size: 30px;
        padding-left: 50px;   
        font-family: 'Inconsolata', monospace;
    }
    .checkbtn {
        display: block;
    }
    nav ul {
        position: fixed;
        width: 55%;
        height: 100vh;
        top: 80px;
        left: -100%;
        text-align: center;
        background-color: rgb(60, 151, 61);
        transition: all .5s;

    }
    nav ul li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
        color: black;
    }
    nav ul li a {
        font-size: 20px;
    }
    a:hover,
    a.active {
        background: none;
        color: white;
    }
    #check:checked~ul {
        left: 0;
    }
    .content {
        height: calc(100vh-80px);

    }
   
    .landing-image img {
        margin-top: 7%;
    }
    .text {
        width: 60%;
        margin-top: 2%;
        line-height: 1.3;
    }
    .text h1 {
        font-size: 1.8em;
    }
    .text p {
        width: 100%;
        font-size: 1em;
    }
}
@media only screen and (max-width: 768px) and (min-width: 481px) {
  html,
    body {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    label.logo {
        font-size: 30px;
        padding-left: 50px;   
        font-family: 'Inconsolata', monospace;
    }
    .checkbtn {
        display: block;
    }
    nav ul {
        position: fixed;
        width: 60%;
        height: 50vh;
        top: 80px;
        left: -100%;
        transition: all .5s;
        text-align: center;
        background-color: rgb(60, 151, 61);
        transition: all .5s;

    }
    nav ul li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
        color: black;
    }
    nav ul li a {
        font-size: 20px;
    }
    a:hover,
    a.active {
        background: none;
        color: white;
    }
    #check:checked~ul {
        left: 0;
    }
    .content {
        height: calc(100vh-80px);
    }
    
    .landing-image img {
        margin-top: 7%;
    }
    .text h1 {
        font-size: 2.4em;
    }
    .text p {
        width: 100%;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
    html,
    body {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
       label.logo {
        font-size: 20px;
        padding-left: 50px;   
        font-family: 'Inconsolata', monospace;

    }
    nav ul li a {
        font-size: 20px;
    }

    .landing-image img {
        margin-top: 7%;
    }
    .text h1 {
        font-size: 2.4em;
    }
    .text p {
        width: 100%;
    }
}
