@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;
}

header {
    width: 100%;
    height: 60px;
    margin-top: 10px;
    position: absolute;
    z-index: 1;
}

.container__menu {
    max-width: 100%;
    height: 60px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }
}

.menu {
    display: flex;
    justify-content: space-around;
    
}
.menu ul li a:hover{
    background-color: rgb(6, 9, 50);
    color: white;
}
.menu ul {
    display: flex;
    margin-left: 3%;
}

.menu ul li {
    list-style: none;
    margin-left: 10px;
    cursor: pointer;
}

.menu ul li a {
    text-decoration: none;
    font-size: 20px;
    color: #000000;
    background: #a5b0e6;
    padding: 6px 15px;
    border-radius: 10px;
    border: 4px solid rgb(10, 4, 47);
    cursor: pointer;
    box-shadow: 1px 1px 30px -12px #21108d;
    transition: all 300ms;
    text-transform: uppercase;
    
}
.container__cover {
    width: 200px;
    height: 250px;
}

.cover {
    max-width: 200px;
    height: 100vh;
    margin: 1%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.container__cover .texto{
    cursor: pointer;
    margin-left: 5%;
    font-family: 'Source Sans Pro', sans-serif;
}
.container__cover .texto h1{
    margin-left: 120px;
    font-size: 60px;
}
.container__cover .texto h2{
    font-size: 48px;
    margin-left: 120px;
}
/* .container__cover .texto:hover{
    background-image: url('../images/escudo.png');
    width: 220px;
    height: 220px;
    color: transparent;
} 
  */
.container__cover .cover .aviso img {
    margin-top: 2%;
    margin-left: 25%;
    width: 300px;
    animation: move-vector 6s linear infinite;
}

@keyframes move-vector {
    0% {
        transform: translateY(75px);
    }

    50% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(75px);
    }
}

.container-body {
    display: flex;
    justify-content: space-between;
    columns: 3;
    column-gap: 10%;
    margin-left: 10%;
    margin-right: 10%;
}

.col {
    max-width: 520px;
}

.col h1 {
    font-size: 22px;
}
.col label{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 16px;
    color: #072e57;
    text-align: center;
}
.col img {
    border-radius: 20px;
    border: #0b2b45 4px solid;
    box-shadow: 0px 0px 29px 8px rgba(32, 75, 155, 0.75);
    -webkit-box-shadow: 0px 0px 29px 8px rgba(32, 75, 155, 0.75);
    -moz-box-shadow: 0px 0px 29px 8px rgba(32, 75, 155, 0.75);
}

footer{
    display: flex;
    justify-content: space-evenly;
    margin-top: 300px;
}
footer a{
    text-decoration: none;
    color: black;
}