@import "fonts.css";

.page {
    display: flex;
    flex-direction: column;
    font-family: 'Jakarta Sans', sans-serif;
    align-items: center;
    gap: 4rem;
    padding-top: 4rem;
    margin: 4rem 4rem 6rem 4rem;
}

html, body {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #0057FF;
    overflow-x: hidden;
}

h1 {
    font-family: 'Graphik', sans-serif;
    font-weight: bold;
    color: white;
    font-size: 4rem;
    text-align: center;
    margin: 0;
}

h2 {
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
    font-family: 'Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    word-break: break-word;
}

p {
    font-family: 'Jakarta Sans', sans-serif;
    color: white;
}

button {
    background-color: #0057FF;
    color: white;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: 2px solid white;
    border-radius: 4px;
    font-weight: bold;
}

button:hover {
    background-color: #ff9300;
}

.home-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

.home-btn:hover {
    background: #ff9300;
}

.content-cards {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    p {
        font-size: 1rem;
    }

    .page {
        margin: 0;
        gap: 0;
    }

    .content-cards {
        gap: 0;
    }
}