*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    color: #ffffff;
}

html, body{
    scroll-behavior: smooth;
    scroll-padding: 80px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.center{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.h1-white{
    white-space: nowrap;
    color: #ffffff;
    width: 100%;
}

.h1-color{
    white-space: nowrap;
    color: #265D80;
    width: 100%;
}

h2{
    color: #ffffff;
    font-size: 18px;
    margin-top: 8px;
    margin-bottom: 4px;
}

.standar-button{
    width: 120px;
    height: 40px;
}

/* header */

header{
    background-color: #333333;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
}

header img{
    width: 48px;
    height: 42px;
    margin-bottom: 2px;
}

header ul{
    display: flex;
    flex-direction: row;
}

header ul li{
    padding-right: 8px;
    padding-left: 8px;
}

header ul li a{
    padding-right: 8px;
    padding-left: 8px;
}

header ul li a:hover{
    padding-right: 8px;
    padding-left: 8px;
    text-decoration: underline;
}

/* footer */

footer{
    padding: 8px;
    background-color: #333333;
}

footer p{
    margin-top: 8px;
    margin-left: 16px;
    padding: 2px;
    color: #ffffff;
}

#sectionV{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
}

footer a img{
    width: 48px;
    height: 48px;
    margin-top: 8px;
    margin-left: 16px;
    padding: 2px;
}

footer h2{
    text-align: center;
}

@media screen and (max-width:1280px) {
    .h1-white{
        font-size: 24px;
        white-space: wrap;
    }
    
    .h1-color{
        font-size: 24px;
        white-space: wrap;
    }

    .standar-button{
    width: 180px;
    height: 40px;
}
    
    h2{
        color: #ffffff;
        font-size: 12px;
        margin-top: 8px;
        margin-bottom: 4px;
    }

    header{
        flex-direction: column;
    }

    #menu-text{
        display: none;
    }

}