body {
    --ngsos-red: rgb(210, 38, 48);
    --text-black: rgba(0,0,0,0.84);
    background-color: white;
    font-family: "IBM Plex Sans", sans-serif;
    width: 100%;
    height: 100vh;
    background-color: #e9e8ef;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.title {
    margin-top: 50px;
    padding-left: 15px;
    border: 2px solid var(--ngsos-red);
    background-color: white;
    border-radius: 50px;
}
    .title img {
        width: 200px;
        height: 80px;
        object-fit: cover;
    }
.redirect-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-black);
    text-align: center;
    background-color: white;
    border-radius: 4px;
    border: 1px solid #c8c8c8;
}
    .redirect-panel a, .return a {
        padding: 10px 30px;
        text-decoration: none;
        font-size: 24px;
        color: white;
        background-color: var(--ngsos-red);
        border: 2px solid var(--ngsos-red);
        border-radius: 50px;
        transition: 0.15s linear background-color, color;
    }
        .redirect-panel a:hover {
            color: var(--ngsos-red);
            background-color: white;
        }
.return a {
    margin-bottom: 50px;
    color: var(--text-black);
    border-color: var(--text-black);
    background-color: white;
    font-size: 1.2rem;
}
    .return a:hover {
        background-color: var(--text-black);
        color: white;
    }
