@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.cookies {
    position: fixed;
    background-color: #FFFFFF;
    align-items: center;
    bottom: 0;
    padding: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    height: 70px;
}

.cookies .centered {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 1300px;
    height: 100%;
    color: #000000;
    text-align: left;
    justify-content: space-between;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
}

.cookies .cookies-text {
    display: flex;
    align-items: center;
    gap: 3px;
}

.cookies .cookies-text a {
    color: #000000;
}

.cookies .cookies-button {
    background-color: transparent;
    width: 100px;
    color: #000000;
    border: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;;
}

.cookies .cookies-button:hover {
    color: #F34646;
}

.cookies .cookies-link:hover {
    color: #F34646;
}

@media screen and (max-width: 1300px) {
    .cookies {
        height: 80px;
        padding-bottom: 20px;
    }

    .cookies .centered {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: column;
        align-content: center;
    }

    .cookies .cookies-text {
        text-align: center;
        align-self: center;
    }

    .cookies .cookies-button {
        align-self: center;
    }
}