* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
}

:root {
    --destaque: #19635C;
    --title: #092442;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

img {
    width: 100%;
}

#cookies {
    position: fixed;
    bottom: 0;
    background-color: #fff;
    /* margin-top: 250px; */
    border-radius: 10px;
    background-color: rgba(246, 246, 246, 0.961);
    width: 60%;
}

.cookies {
    margin: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

h2 {
    font-size: 45px;
    color: var(--title);
}

p {
    font-size: 22px;
    line-height: 40px;
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

a {
    text-decoration: none;
    padding: 20px 30px;
    background-color: var(--destaque);
    border: none;
    border-radius: 10px;
    color: #fff;
}

a.decline {
    background-color: lightgrey;
    color: black;
}

@media (max-width: 768px) {
    #cookies {
        width: 98%;
        margin-top: 50px;
        text-align: center;
    }

    h1 {
        font-size: 30px;
        color: var(--title);
    }

    p {
        font-size: 18px;
        line-height: 28px;
    }

    .cookies_links a {
        text-decoration: none;
        font-size: 18px;
        padding: 15px 20px;
        border-radius: 10px;
    }
}