body {
    background-image: url(../img/CloudImage.png);
    object-fit: contain;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
}
    
.header {
    background-color: #C7DDEE;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 185px;
    top: 0;
    left: 0;
    z-index: 999999;
 
}

.header a img {
    display: inline-block;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;

}

.header h5 {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    vertical-align: top;
    padding-top: 25px;
    margin-left: -9px;
}

.header ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    overflow: hidden;
     background-color: #C7DDEE;
}

.header ul a {
    display: block;
    padding-bottom: 0px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
    opacity: 80%;
    padding-right: 20px;
    color: black;
    text-decoration: none;
    font-family: Inter, sans-serif;
    font-size: 10px;
}

.header ul a:hover,
.header .menu-btn:hover {
    color: #557dc9;
    font-weight: 400;

}

.header .logo {
    display: block;
    float: right;
    font-size: 2em;
    padding: 10px 20px;
    text-decoration: none;
}

/* menu */

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
     background-color: #C7DDEE;
    padding: 31px 20px;
    margin-top: 45px;
    margin-right: 20px;
    position: relative;
    user-select: none;
}

.header .menu-icon .navicon {
    background-color: black;
    color: black;
    display: inline-block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
    height: 2.1px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
    background: black;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-icon .navicon:before {
    top: 5px;
}

.header .menu-icon .navicon:after {
    top: -5px;
}

/* menu btn */

.header .menu-btn {
    display: none;
}

.header .menu-btn:checked ~ .menu {
    max-height: 250px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
}

/* footer */

.footer {
    margin-top: 500px;
    
}



/* main content */

.maincontent {
    margin-top: 300px;
    max-height: 500px;
    margin-bottom: 275px;
    text-align: center;
    cursor: crosshair;
}
.maincontent img{
   max-height: 300px;
   max-width: 300px;
    cursor: crosshair;
}

.maincontent h2 {
   text-align: left;
}

.maincontent h1 {
   text-align: center;
    font-size: 20px;
    padding-top: 100px;
}

/* 48em = 768px NAVIGATION ON DESKTOP? */

@media (min-width: 70em) {
    .header ul {
        float: right;

    }

    .header ul a {
        display: inline-block;
        padding-top: 35px;
        font-size: 12px;
        font-family: Inter, sans-serif;
        margin-left: 10px;
        margin-right: 20px;
        padding-right: 10px;
    }

    .header .menu {
        clear: none;
        float: right;
        max-height: none;
        padding-right: 20px;
        padding-top: 50px;
    }

    .header .menu-icon {

        display: none;
        direction: inline-block;
        vertical-align: bottom;

    }
    .maincontent h1 {
   text-align: center;
    font-size: 25px;
    padding-top: 100px;
}
    .maincontent img{
   max-height: 600px;
   max-width: 600px;
    cursor: crosshair;
}