* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


header {
    background: rgb(45,143,128);
background: radial-gradient(circle, rgba(45,143,128,0.43063944327731096) 0%, rgba(5,54,48,1) 0%, rgba(0,0,0,1) 71%);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 30px;
    position: sticky;
    top: 0px;
    margin: 3px solid rgb(43, 130, 151);
}

.imgLogo {
    height: 100px;
    display: inline;
    margin-right: 200px;
}

.divH {
    display: flex;
    align-items: center;
    gap: 40px;
}

a {
    text-align: center;
    text-decoration: none;
    color: white;
}

a:hover {
    cursor: pointer;
    color: aqua;
    opacity: 60%;
    filter: drop-shadow(3px 3px 10px #4498dd);
    transition: 0.5s;
}

.imgdofooter {
    height: 896px;
    width: 950px;
    border: 3px solid rgb(43, 130, 151);
}

footer {
    display: flex;
    align-items: center;
    background-color: black;


    & .info {
        height: 900px;
        border: 3px solid rgb(43, 130, 151);
        font-size: 60px;
        padding-top: 110px;
        padding-left: 20px;
        background: rgb(45,143,128);
background: linear-gradient(318deg, rgba(45,143,128,0.43063944327731096) 0%, rgba(5,54,48,1) 0%, rgba(0,0,0,1) 24%);

        & p {
            color: white;

        }
    }
}