* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Giaza';
    src: url('./assets/Giaza.otf');
    font-weight: normal;
    font-style: normal;
}

h1 {
    font-family: 'Giaza', serif;
}

h2 {
    font-family: 'Georgia', sans-serif;
    font-weight: normal;
    color: white;
    letter-spacing: 0.3rem;
    font-size: 0.9rem;
}

main {
    display: flex;
    height: var(--window-height);
    background: linear-gradient(125deg, rgba(255,201,151,100),rgba(216,188,252,100));
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
}

:root {
    --window-height: var(--window-height);
}

.gradient-text{
    font-size: 5rem;
    background: linear-gradient(90deg, #ff1bbe, rgba(252,94,35,255));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: background 0.3s ease-in-out;

}