body {
    background: linear-gradient(to left, #808080, #000000);
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: "Montserrat", serif;
    color: white;
    padding-bottom: 0;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

h1, p, svg {
    color: white;
    text-align: center;
}

h1 {
    font-family: "Spectral", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

p {
    font-family: "Montserrat", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.5rem;
    margin-top: 1rem;
    max-width: 900px;
    line-height: 1.5;
}

button {
    font-family: "Montserrat", serif;
    font-weight: 350;
    width: 20%;
    max-width: 300px;
    font-style: normal;
    font-size: 1.8rem;
    margin-top: 3rem;
    color: black;
    background-color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

button:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

footer {
    text-align: center;
    font-family: "Montserrat", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1rem;
    background-color: white;
    padding: 1.2rem 0;
    width: 100%;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

footer p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: black;
}

a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

a:hover {
    color: rgb(121, 121, 121);
}

img {
    width: 10rem;
    vertical-align: middle;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        flex-direction: row;
        gap: 0.5rem;
    }

    svg {
        width: 80px;
        height: 80px;
    }

    p {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    button {
        width: 60%;
        font-size: 1.5rem;
    }

    footer {
        font-size: 0.9rem;
        padding: 1rem 0.5rem;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
    }

    body {
        padding-bottom: 5rem;
    }

    img {
        width: 8rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
        flex-direction: row;
        gap: 0.5rem;
    }

    svg {
        width: 50px;
        height: 50px;
    }

    p {
        font-size: 1rem;
    }

    button {
        width: 80%;
        font-size: 1.3rem;
        padding: 10px 15px;
    }

    footer {
        font-size: 0.8rem;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
    }

    body {
        padding-bottom: 5rem;
    }

    img {
        width: 6rem;
    }
}