*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body{
    font-family: "montserrat";
    background: #f0ebe5;
}

nav{
background: #f0ebe5;
height: 80px;
width: 100%;
margin-top: 20px
}

label.logo:hover{ background:#d8d4ce;
    cursor: pointer;
}

a{
    color: #738ed1;
}

a:hover{
    background: none;
    color: #292b27;
    transition: .3s;
    }

label.logo{
    color: #738ed1;
    font-size: 20px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
    border-radius: 20px;
    border: 2px solid;
    border-color: #738ed1;
    margin-left: 30px;
    padding:7px 13px;
}

nav ul{
    float: right;
    margin-right: 20px;
}
nav ul li{
    display: inline-block;
    line-height: 90px;
    margin: 0 5px;
}
nav ul li a{
    color: #738ed1;
    font size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
}

li a:hover{
    background: #d8d4ce;
    transition: .3s;
    padding: 7px 13px;
    border-radius: 10px;
}

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

#check{
    display: none;
}
.wrapper{
    background: #f0ece5;
    height: auto;
    padding: 5px;
    margin: 20px;
}

.content{
    display: grid;
    height: auto;
    margin: 10px;
    padding-right: 15px;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas: 
        "redesign";
        "calvino playground1 playground2";
        "peatcutter fluid";
    grid-gap: 1.4rem;
}
#redesign{
    background: pink;
    padding: 60px;
    grid-column-start: 1;
    grid-column-end: 5;
    font-size: 50px;
    border-radius: 50px;
    margin-top: 30px;
    color: black;
}
#redesign:hover{ filter:brightness(90%);
cursor: pointer;
}

p{
    font-size: 20px;
    font-family: "karla";
    line-height: 30px;
}

#calvino{
    background: blue;
    padding: 60px;
    grid-column-start: 1;
    grid-column-end: 3;
    border-radius: 50px;
    font-size: 50px;
}

#calvino:hover{ filter:brightness(90%);
cursor: pointer;
color: black;
}

#playground1{
    background: yellow;
    padding: 60px;
    grid-column-start: 3;
    grid-column-end: 4;
    border-radius: 50px;
    font-size: 50px;
}

#playground1:hover{ filter:brightness(90%);
cursor: pointer;
}

#playground2{
    background: yellow;
    padding: 60px;
    grid-column-start: 4;
    grid-column-end: 5;
    border-radius: 50px;
    font-size: 50px;
}

#playground2:hover{ filter:brightness(90%);
cursor: pointer;
}

#peatcutter{
    background: green;
    padding: 60px;
    grid-column-start: 1;
    grid-column-end: 3;
    border-radius: 50px;
    font-size: 50px;
}

#peatcutter:hover{ filter:brightness(90%);
cursor: pointer;
}

#fluid{
    background: orange;
    padding: 60px;
    grid-column-start: 3;
    grid-column-end: 5;
    border-radius: 50px;
    font-size: 50px;
}

#fluid:hover{ filter:brightness(90%);
cursor: pointer;
}

h1{
    font-size: 18px;
    padding: 10px;
    text-align: center;
}
h3{
    float: left;
    padding-left:
    30px;
    line-height: 80px;
    font-size: 18px;
    color: #738ed1;
}
.footer{
    color:#738ed1;
}

h4{
    float: right;
    padding-right:
    30px;
    line-height: 80px;
}

h5{
    float: right;
    padding-right:
    30px;
    line-height: 80px;
}

h6{
    float: right;
    padding-right:
    30px;
    line-height: 80px;
}

@media(max-width: 1000px){
    #airedalepic{
        display:none;
    }
}

@media(max-width: 1200px){
    nav ul li a{
        font-size: 16px;}
    .content{
        display: block;
    }
    #redesign{
        margin-bottom: 1.4rem;
    }
    #calvino{
        margin-bottom: 1.4rem;
    }
    #playground1{
        margin-bottom: 1.4rem;
    }
    #playground2{
        margin-bottom: 1.4rem;
    }
    #peatcutter{
        margin-bottom: 1.4rem;
    }
    #fluid{
        margin-bottom: 1.4rem;
    }
}

@media(max-width: 850px){
    .checkbtn{
        display: block;
    }
    ul{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: whitesmoke;
        top: 120px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }
    nav ul li{
        display: block;
        padding: 30px;
    }
    nav ul li a{
        font-size:17px;
    }
    a:hover{
    background: none;
    color: #292b27;
    transition: .3s;
    }
    #check:checked ~ ul{
    left: 0;
    }
    .wrapper{
        display: block;
    }
}




