@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

:root {
    --notice-height: fit-content;
}

body {
    background-color: #000412;
    margin: 0; !important;
    width: 100vw;
    overflow-x: hidden;
}

div.notice {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #deac1a;
    color: black;
    padding: 0.5rem;
    margin: 0;
    text-align: center;
    box-shadow: 0 10px 5px rgba(0, 0, 0, 0.5);
    height: var(--notice-height);
    text-wrap: wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

p, a, body {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
}

h1 {
    font-size: 2rem;
}

@media screen and (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    h4 {
        font-size: 1.3rem;
    }
    h5 {
        font-size: 1.2rem;
    }
    h6 {
        font-size: 1.1rem;
    }
    p {
        font-size: 1.2rem;
    }
}

/* Header */
header {
    margin: 0;
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #1E1E1E;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
    box-sizing: border-box;
}

header > .mobile > img {
    height: 2rem;
    width: auto;
}

/* Desktop & Tablet Layout */
@media (min-width: 768px) {
    /* Adjusting Desktop Layout */
    header {
        padding: 1rem 2.5rem;
        margin: 0;
    }
    .desktop {
        display: inherit;
    }
    .mobile {
        display: none;
    }
}

/* Phone Layout */
@media (max-width: 767px) {
    /* Adjusting Mobile Layout */
    header {
        padding: 1rem;
        margin: 0;
    }
    .desktop {
        display: none;
    }
    .mobile {
        display: inherit;
    }
}

header > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

header > div > * {
    flex: 1 1 auto;
}

header img {
    max-height: 3rem;
}

header a {
    text-decoration: none;
    color: #fff;
}

div.container {
    margin: 0 !important;
}

a.button {
    display: flex;

    justify-content: center;
    align-items: center;

    background-color: #008080;
    width: fit-content;
    height: 2rem;
    padding: 1rem 2rem;
    border-radius: 32px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

a.button-secondary {
    display: flex;

    justify-content: center;
    align-items: center;

    background-color: transparent;
    border: 1px solid #008080;
    width: fit-content;
    height: 2rem;
    padding: 1rem 2rem;
    border-radius: 32px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

div.buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 1rem !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
}

div.footer {
    min-height: 0 !important;
    height: fit-content;
    background-color: #1E1E1E;
    color: #fff;
    padding: 1rem;
    margin: 0;
}