﻿/* ✅ Font Face */
@font-face {
    font-family: 'NuovaVolte';
    src: url('/font/NuovaVolte-Light-ojyq6l.woff2') format('woff2'), url('/font/NuovaVolte-Light-6nxf7c.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* ✅ Title */
.title {
    font-size: 3.8rem;
    background: linear-gradient(90deg, #d00659 0%, #4F2984 50%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 20px;
    margin-bottom: 5px;
}

/* ✅ Paragraph */
.paragraph {
    font-size: 1.2rem;
    background: linear-gradient(90deg, #36BDED 0%, #4F2984 50%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    line-height: 1.4;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 10px;
}

/* ✅ Buttons */
.button {
    font-size: 1.5rem;
    background-color: #d00659;
    color: white;
    border: none;
    padding: 5px;
    width: 30%;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 100px;
}

    .button:hover {
        background-color: #d00555;
    }

.active {
    color: blue;
    text-decoration: underline;
    font-weight: bold;
}
