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

:root {
    --gray-font: #6b7380;
    --background-color: #0b0f19;
    --secondary-color: #0e1422;
    /* --tripledary-color: #0e1422; */
}

body {
    font-family: "Inter", sans-serif;
    color: white;
    background-color: #0b0f19;
    background: linear-gradient(to bottom, #0b0f19 60%, #3c0f14 100%);
    width: 100vw;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 64px;
    font-weight: 700;
}

.box1 {
    background-color: var(--secondary-color);
    width: fit-content;
    border-radius: 20px;
    padding: 30px;
}

.align-left {
    text-align: left;
}

.size-18 {
    font-size: 18px;
    line-height: 1.25;
}

.box1-intro {
    margin-top: 20px;
    color: var(--gray-font);
}

#try-now {
    padding: 10px;
    border-radius: 20px;
    background-color: transparent;
    outline: none;
    border: none;
    color: white;
    font-family: "Inter", sans-serif;
    border: 1px solid #4a5565;
    font-size: 16px;
    margin-top: 50px;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 100% 
    );
    transition: all 0.3s ease;
}

#try-now:hover {
    cursor: pointer;
    background: radial-gradient(
        circle at center
        rgba(255, 255, 255, 255, 0.25) 0%,
        transparent 100%
    );
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}