body {

text-align: center
background-color: #0093E9;
background-image: linear-gradient( 135deg, #5EFCE8 10%, #736EFE 100%);
max-width: 910px;
min-width: 910px;
margin: auto;

   zoom: 1.15; 
    -moz-transform: scale(1.15); 
    -moz-transform-origin: 0 0;
}

nav {
    background-color: #0C2D48;
    padding-bottom: 10px;
    border-radius: 0px 0px 20px 20px;
}

.topnav {
    overflow: hidden;
    background-color: ;
    margin-left: 16px;
    margin-right: 10px;
}

.topnav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 5px 2px;
    text-decoration: none;
    font-size: 17px;
    margin-top: 10px;
    font-family: 'Ubuntu';
    font-weight: bold;


}

.topnav a:not(:first-child) {
    margin-left: 10px;
    margin-top: 14px;
    transition: all .1s ease-in-out;
}


.topnav a:hover {
    color: #a6deff;
    transition: .1s;
    transform: scale();

}

.topnav a.active {
    background-color: ;
    color: white;
    margin-right: 480px;
    margin-left: 4px;
    font-size: 1.5em;
}

.topnav a.active:hover {
    color: #a6deff;
}

.topnav .icon {
    display: none;
}

main {}

main section {
margin-top: 25px;
margin-bottom: 30px;
background-color: #0C2D48;






    
    padding-top: 5px;
    border-radius: 20px 20px 20px 20px;
}

section h1 {
    font-size: 2.5em;
    font-family: 'Ubuntu';
    color: white;
    text-shadow: 1px 1px 0px #314484;
    padding-left: 50px;
}

section h2 {
    font-size: 2.0em;
    color: white;
    font-family: 'Ubuntu';
    text-shadow: 1px 1px 0px #314484;
    font-weight: bold;
    padding-left: 113px;
    padding-bottom: 0px;
}


section p {
    font-size: 1.2em;
    width: 75%;
    font-family: 'Ubuntu';
    color: white;
    padding-top: 0px;
    padding-bottom: 50px;
    margin: auto;
}

img {
    width: 910px;
    padding-top: 0px;
    padding-bottom: 15px;
}

.grid-container {
    display: grid;
    max-width: 1200px;
    grid-row-gap: 2.3rem;
    grid-column-gap: 2.3rem;
    width: 60%;
}

.grid-item {
    width: 280px;
    height: 340px;
    background-color: #4c69e2;

    border-radius: 20px;
    transition: all .2s ease-in-out;
}

.grid-item:hover {
    background-color: #6684e5;
    cursor: pointer;
    transition: .1s;
    width: 280px;
    height: 340px;
    transform: scale(1.05);

}

.grid-item:hover img {
    opacity: 0.65;
    transition: .1s;
}

.grid-item img {
    height: 180px;
    width: 245px;
    margin-left: 18px;
    margin-top: 20px;
    border-radius: 15px;
}



i {
    border: solid #2d49a8;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    margin-left: 10px;
    margin-bottom: px;
    animation-name: pijl;
    animation-duration: .6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    transform-origin: top;
    animation-direction: alternate;


}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);

}

@keyframes pijl {

    0% {
        margin-bottom: 0px;
    }

    100% {
        margin-bottom: 8px;
    }


}

.grid-container h3 {
    margin-left: 20px;
    margin-top: 4px;
    font-size: 20px;
    color: white;
    font-family: 'Ubuntu';
    font-weight: 100;

}

.grid-container p {
    margin-top: -10px;
    margin-left: 20px;
    margin-right: 20px;
    font-family: 'Ubuntu';
    color: white;

}



footer {

    margin-top: 50px;
    height: 70px;
background-color: #0C2D48;
    border-radius: 20px 20px 0px 0px;
}

footer p {
    padding-top: 25px;
    font-size: 20px;
    color: white;
    font-family: 'Ubuntu';
    font-weight: 100;
    text-align: center;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

@media (min-width: 600px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}


