.alert {
    border:solid red 1px;
    background-color: rgb(230, 121, 121);
    color: white;
    padding : 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}

.alert-success {
    border:solid green 1px;
    background-color: rgb(77, 155, 62);
    color: white;
    padding : 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}

body {
    margin:0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.cookie-alert {
    width: 100%;
    position:fixed;
    background-color: rgba(0,0,0,0.8);
    color: whitesmoke;
    text-align: center;
    padding: 20px;
    z-index: 6;
    bottom: 0;
    font-size: 1.5em;
}

.cookie-alert a {
    text-decoration: none;
    background-color: rgb(36, 131, 255);
    color: whitesmoke;
    padding: 15px;
    border-radius: 20px;
    font-weight: bold;
}

.cookie-alert p {
    margin: 20px;
}
@media (max-width: 1300px) {

    .cookie-alert{
        font-size: 1.7em;
    }

}