*{
    margin: 0;
    padding: 0;
}

:root{
    --background-blue: #072742;
    --dark-blue: #0b4777;
    --light-blue: #00C7E9;
    --light-blue2: #70c9f3;
}

@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato-Regular.ttf");
}

body{
    font-family: "Lato", sans-serif;
    background-color: var(--background-blue);
}

.container{
    width: 90vw;
    margin: auto;
}

/* ----------------- HEADER ----------------- */
.logo-container img{
    width: 150px;
    margin-top: 15px;
}

/* ----------------- MAIN ----------------- */
#politica{
    background-color: white;
    background-repeat: no-repeat;
    background-position: center;


    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
}

.politica-title{
    text-align: center;
    color: var(--background-blue);
    margin-bottom: 20px;
}

.politica-text p{
    margin-bottom: 10px;

    color: var(--background-blue);
}

.politica-buttons{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;

    padding: 40px 0 0 0;
}

.politica-buttons button{
    padding: 10px;
    background-color: var(--background-blue);

    color: white;
    font-size: 15px;
    border: none;
    border-radius: 10px;

    cursor: pointer;
}

.politica-buttons a{
    text-decoration: none;
    padding: 10px;
    background-color: var(--background-blue);

    color: white;
    font-size: 15px;
    border: none;
    border-radius: 10px;
}

/* ----------------- FOOTER ----------------- */
footer{
    margin-top: 30px;
    background-color: var(--background-blue);
    height: 80px;
}

.copyright{
    text-align: center;
    color: white;
}

/* -------------------------------------------- MEDIA QUERIES -------------------------------------------- */
