/*common css*/
@font-face {
    font-family: "Noto Serif";
    src: url("/fonts/NotoSerif-Variable.ttf") format("truetype");
}
@font-face {
    font-family: "Outfit";
    src: url("/fonts/Outfit-Variable.ttf") format("truetype");
}
html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: black;
}

p,
a {
    font-family: "Outfit";
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 300;
}
a {
    color: #00c2ff;
    text-decoration: underline;
}
.cta-button {
    background-color: #00c2ff;
    color: black;
    padding: 0.8rem 1.2rem;
    border: 2px solid #00c2ff;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    background-color: white;
    color: black;
    border: 2px solid white;
}

.action-button {
    background-color: black;
    color: white;
    padding: 0.8rem 1.2rem;
    border: 2px solid #00c2ff;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-button:hover {
    background-color: white;
    color: black;
    border: 2px solid white;
}

@media (max-width: 768px) {
    .cta-button,
    .action-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

ul {
    padding: 0;
}
li {
    font-family: "Outfit";
    color: #eaeaea;
    padding: 1rem;
    text-decoration: none;
    list-style: none;
}
h1, h2 {
    letter-spacing: 0.1rem;
    font-family: "Outfit";
    color: #eaeaea;
}
h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-family: "Outfit";
    color: #eaeaea;
}