#consent{
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    max-width: 80vw;
    background-color: #e8e8e8;
    border-radius: 25px;
    z-index: 1001;
    padding: 20px;
    font-family: Calibri, sans-serif;
}

#consent h1{
    font-size: 2em;
    letter-spacing: 1.1px;
    color: #171717;
    margin: 0;
    width: 100%;
}

#consent p{
    font-size: 1.2em;
    width: 100%;
    margin: 0;
    color: #313131;
}

#consent-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    margin-top: 5px;
}

#consent-buttons a{
    width: 140px;
    min-height: 40px;
    transition: background-color 0.3s;
    border: rgb(28, 28, 28) 3px solid;
    border-radius: 45px;
    cursor: pointer;

    text-decoration: none;
    color: #e8e8e8;
    font-size: 27px;
    font-family: Calibri, sans-serif;
    text-align: center;
    font-weight: bold;
}

#consent-accept{
    background-color: #136608;
}

#consent-decline{
    background-color: #b13320;
}

#consent-accept:hover{
    background-color: rgb(35, 139, 23);
}

#consent-decline:hover{
    background-color: rgb(211, 68, 46);
}