@font-face {
    font-family: 'Gemoy';
    src: url('./assets/fonts/Baby\ Gemoy.ttf');
}

@font-face {
    font-family: 'Bounce';
    src: url('./assets/fonts/GubyBambam-3D-SVG.otf');
}

h1 {
    font-family: 'Bounce', 'Gemoy';
    color: magenta;
    text-align: center;
    font-size: 100px;
    filter: hue-rotate(90deg);
    margin: 0;
    margin-bottom: 100px;
}

html {
    height: 100%;
    min-height: 100%;
    min-height: 100dvh;
    margin: 0;
    padding: 0;
    background-color: black;
    background-image: url('./assets/images/bg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* filter: blur(2px); */
}

body {
    min-height: 100%;
    min-height: 100dvh;
    margin: 0;
    padding: 0;
}


a {
    color: teal;
    text-decoration: none;
    font-size: 32px;
    font-family: 'Bounce';
    text-align: center;
    display: block;
    margin: 20px auto;
    width: 120px;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(180, 90, 150, 0.45);
    background: linear-gradient(
        180deg,
        rgb(255, 222, 244) 0%,
        rgb(252, 195, 232) 22%,
        rgb(247, 166, 223) 48%,
        rgb(238, 140, 205) 52%,
        rgb(250, 209, 238) 78%,
        rgb(255, 230, 248) 100%
    );
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 10px 14px rgba(255, 255, 255, 0.35) inset,
        0 -6px 12px rgba(160, 60, 120, 0.22) inset,
        0 6px 12px rgba(40, 10, 30, 0.28),
        0 2px 4px rgba(40, 10, 30, 0.18);
}

a:active {
    background: linear-gradient(
        180deg,
        rgb(238, 150, 208) 0%,
        rgb(247, 170, 220) 45%,
        rgb(252, 200, 235) 100%
    );
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.2) inset,
        0 8px 16px rgba(160, 50, 100, 0.2) inset,
        0 1px 2px rgba(40, 10, 30, 0.15);
    transform: translateY(1px);
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}