@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

/* how to use */
/* .class-name {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-style: normal;
} */

body {
    margin: 0;
    min-height: 100vh;
    background: #ffffff;
    position: relative;
    overflow-x: hidden;
}


.welcome-toptext {
    font-size: 3em;
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.desc-toptext {
    font-size: 1.6rem;
    font-family: "Varela Round", sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #1b1b1b;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.toptext {
    text-align: center;
    font-family: "Varela Round", sans-serif;
    position: relative;
    z-index: 1;
}

.buttons {
    padding: 2rem;
    font-size: 4rem;
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    position: relative;
    z-index: 1;
}

.buttons button {
    font-size: 1.1rem;
    padding: 0.9rem 1.6rem;
    margin: 0.5rem;
    border: 0;
    border-radius: 0.75rem;
    background: #ffffff;
    color: #111;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
    background: #f7f7f7;
}

.buttons button:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.buttons button:focus-visible {
    outline: 3px solid rgba(17, 17, 17, 0.3);
    outline-offset: 3px;
}

.button-link {
    display: inline-block;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.9rem 1.6rem;
    margin: 0.5rem;
    border: 0;
    border-radius: 0.75rem;
    background: #ffffff;
    color: #111;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
    background: #f7f7f7;
}

.button-link:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.button-link:focus-visible {
    outline: 3px solid rgba(17, 17, 17, 0.3);
    outline-offset: 3px;
}

.watermark {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-family: "Varela Round", sans-serif;
    color: rgba(0, 0, 0, 0.45);
    text-align: center;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}
