/* Resetting margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        Funnel Sans,
        sans-serif;
    background: linear-gradient(120deg, #f5efff, #e7d1ff, #8653c3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    /* background: linear-gradient(120deg, #fff, #f5efff); */
    background-color: #fff;
    /* Semi-transparent white for contrast */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-wrap: balance;
    /* text-wrap: pretty; */
}

h2 {
    font-family:
        Funnel Sans,
        sans-serif;
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #8653c3;
}

h3 {
    font-family:
        Funnel Sans,
        sans-serif;
    font-size: 1.5rem;
    padding-left: 3px;
    margin-bottom: 20px;
    color: #8653c3;
}

p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #8653c3;
}

.visibly-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}


.tee {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
}

footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.9em;
    color: #fff;
}
