body {
    background-color: #ffffff;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    box-shadow: 0px 0px 8px 0px rgba(16, 21, 39, 0.05);
    height: 64px;
    padding: 12px 24px;
    text-align: center;
    border-bottom: 1px solid #d4d4d4;
}

main {
    display: flex;
    justify-content: center;
}

section.main-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 35px;
    max-width: 400px;
    text-align: center;

    h1 {
        color: #000;
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .click-redirect-button,
    .domain-updated {
        color: #4A4A68;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .redirecting {
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .redirect-button {
        align-self: center;
        background-color: #194590;
        border-radius: 8px;
        color: #fff;
        font-family: Lato;
        font-size: 16px;
        font-weight: 300;
        padding: 10px 36px;
        text-decoration: none;
        width: fit-content;
        height: 42px;
        line-height: 22.4px;
    }

    .redirect-button:hover {
        background-color: #112F63;
    }

    .redirect-button:active {
        background: #112F63;
        box-shadow: 4px 4px 4px 0px rgba(16, 21, 39, 0.50) inset;
    }
}

footer {
    background-color: #333;
    bottom: 0;
    color: white;
    padding: 1rem;
    position: fixed;
    text-align: center;
    width: 100%;
}