@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

body {
    background: linear-gradient(135deg, #FF4E98, #8E44AD);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 100% 100%;
    color: white;
}

a {
    color: white;
}

* {
    padding: 0;
    margin: 0;

    font-family: "Ubuntu", sans-serif;
}

.logo {
    width: 15rem;
}

.logo-large {
    width: 30rem;
}

.rectangle-button {
    background-color: #4ade80;
    color: black;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
}

.pill-button {
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: 0.3s;
}

.pill-button:hover {
    transition: 0.3s;
    opacity: 0.8;
}

.popup-modal {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 2;

    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup {
    width: 800px;
    max-width: 800px;
    padding: 2rem;
    border-radius: 1rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 8px;

    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: #000;
}

.pill-button-large {
    margin-top: 2rem;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    cursor: pointer;
    display: block;
    width: 100%;
    font-size: 1.1rem;
    transition: 0.3s;
    box-sizing: border-box;
}

.pill-button-large:hover {
    transition: 0.3s;
    opacity: 0.8;
}

.squircle-button {
    border: none;
    color: #FF4E98;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 1rem;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.1s ease-in-out;
}

.squircle-button:active {
    transform: scale(0.95);
}

footer {
    background: #111827;
    color: white;
    text-align: center;
    padding: 2rem;
}

footer a {
    color: white;
    margin: 0 1rem;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}