@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --background: #f2f3f7;
    --block-color: #ffffff;
    --text-color: #202427;

    --success-color: #51DCBE;
    --warning-color: #FFA200;
    --error-color: #FF3E6C;
    --accent-color: #45B0E5;

    --blue-gradient: linear-gradient(90deg, rgba(69, 176, 229, 1) 0%, rgba(84, 133, 229, 1) 100%);
    --success-gradient: linear-gradient(90deg, rgba(81, 220, 190, 1) 0%, rgba(69, 197, 128, 1) 100%);
    --warning-gradient: linear-gradient(90deg, rgba(255, 162, 0, 1) 0%, rgba(255, 196, 64, 1) 100%);
    --error-gradient: linear-gradient(90deg, rgba(255, 62, 108, 1) 0%, rgba(238, 77, 77, 1) 100%);

    --shadow: 9px 9px 16px 0px rgba(166, 171, 189, 0.4), -9px -9px 16px 0px rgba(250, 251, 255, 1);
}

[data-theme="dark"] {
    --background: #2b2c30;
    --block-color: #202427;

    --text-color: #ffffff;

    --shadow: 9px 9px 16px 0px rgb(32, 32, 32, 0.4), -9px -9px 16px 0px rgb(53, 53, 53);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", serif;
    color: var(--text-color);
    scrollbar-width: none;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 0;
}

body {
    margin-top: -75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100svh;
    background: var(--background);


    img {
        width: clamp(4.688rem, 1.563rem + 15.63vw, 20.313rem);
        position: relative;
        top: clamp(1.875rem, 0.375rem + 7.5vw, 9.375rem);
        z-index: 1;
    }

    h1 {
        font-size: clamp(7.5rem, 3.375rem + 20.63vw, 28.125rem);
        transform-style: preserve-3d;
        width: max-content;
        transform: perspective(700px) rotateX(60deg);
        line-height: clamp(3.125rem, 0.625rem + 12.5vw, 15.625rem);
    }

    h2 {
        font-size: clamp(1.5rem, 1.375rem + 0.63vw, 2.125rem);
        margin-bottom: 1rem;
        text-align: center;
    }
}

.btn {
    background: var(--background);
    border: none;
    border-radius: 50px;
    width: max-content;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    position: relative;
    text-decoration: none;
}

.btn:hover {
    transform: scale(1.1);
    background: var(--block-color);
    box-shadow: var(--shadow);
}

.btn:active {
    transform: scale(0.95);
}