body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, rgba(255, 144, 32, 1), rgba(178, 72, 12, 1));
    font-family: 'Barlow', Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #000000;
    text-align: center;
}

.txsBackgroundX {
    position: absolute;
    opacity: 0.35;
    right: 0;
    z-index: -1;
    height: 100%;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    padding: 40px;
    background: rgba(255, 255, 255, 1);
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

h1 {
    font-size: 2em;
    margin: 0em 0.5em 0.75em 0.5em;
}

p {
    font-size: 1.5em;
    opacity: 0.9;
    margin: 0px;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    background-color: #004060;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 20px;
}

.button:hover {
    background-color: #FF9020;
    cursor: pointer;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 28px;
    color: white;
    overflow: hidden;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.6);
    font-size: .8em;
    text-align: right;
}

footer span {
    margin: 0 8px;
}

footer span a {
    color: white;
    text-decoration: none;
}

footer span a:hover {
    text-decoration: underline;
}

.cookieConsent {
    position: absolute;
    top: 0px;
    transform: translate(-50%, 0%);
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    width: 50%;
    max-width: 750px;
    display: flex;
    margin: auto;
    padding: 15px;
    border-radius: 0px 0px 8px 8px;
}

.cookieText {
    font-size: .75em;
}

.cookieAcceptBtn {
    font-size: .9em;
    margin-left: 20px;
    align-self: center;
    min-width: 120px;
    padding: 5px;
    border: none;
    border-radius: 4px;
    background-color: #004060;
    color: #FFFFFF;
}

.cookieAcceptBtn:hover {
    background-color: #FF9020;
    cursor: pointer;
}