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

@font-face{
    font-family: Merge;
    src: url(../../../../files/font/merge_light.otf);
}

body{
    background: #000;
    font-family: Merge,serif;
}

header{
    background: url(../../../../files/img/utilities/computer3.jpg),#000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 70vh;
}

.header{
    transition-duration: 3s;
    margin-top: -70vh;
}

main{
    background: linear-gradient(#000 1%,indigo 10%,black);
    transition-duration: 13s;
    animation-duration: 12s;
    min-height: 30vh;
}

main section{
    background: #ddd3;
    padding: 7px;
    width: 90%;
    margin: auto;
    overflow: hidden;
}

main section div{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

main section div img{
    border: 10px solid transparent;
    border-radius: 20px;
}

h2{
    padding: 10px;
    color: white;
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px black;
}
input{
    color: #505050;
    outline: none;
    border: none;
    margin: 20px;
    padding: 10px;
    font-size: 20px;
    text-align: center;
    border-radius: 3px;
}

input[type="submit"]{
    background: dodgerblue;
    color: white;
}

input[type="submit"]:hover{
    background: lightseagreen;
    color: white;
}

a{
    background: #252525;
    font-size: 17px;
    margin: 0px 7px;
    text-decoration: none;
    border-radius: 3px;
    padding: 10px 20px;
    color: white;
}

a:hover{
    background:darkmagenta;
}