@charset "utf-8";
/* CSS Document */
@font-face {
    font-family: Heebo;
    src: url("../assets/fonts/Heebo-Regular.ttf");
    font-display: swap;
    font-weight: normal;
}

@font-face {
    font-family: Heebo;
    src: url("../assets/fonts/Heebo-Bold.ttf");
    font-display: swap;
    font-weight: bold;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    position: relative;
    font-size: 16px;
}

main {
    flex: 1 1 auto;
}

footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;

    border-top: 1px solid #e5e7eb;
    background: #f6f8fb;
}

section {
    width: 100%;
    background-color: #721c24;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px;
}

section:nth-child(even) {
    background-color: #501c72;
}

/* START BUTTON */

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.15rem;
    border-radius: 12px;
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
    transition: transform .2s ease, filter .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.05);
}

.link {
    color: var(--color-primary);
}

/* END BUTTON */
@media (min-width: 480px) {

}

@media (min-width: 600px) {

}

@media (min-width: 768px) {

}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {

}
