@font-face {
    font-family: 'LaLuxes';  /* Name you’ll use in CSS */
    src: url('fonts/LaLuxes.otf') format('opentype');
    font-weight: normal;    /* optional */
    font-style: normal;     /* optional */
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    background-image: url("media/background.png");
    background-size: contain ;
    background-repeat: no-repeat;
    background-color: #0C0C11;
    color: white;
    padding: 48px 32px 32px 32px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.outer-div {
    display: flex;
    flex-direction: column;
    max-width: 400px;
}

.lang-link {
    text-decoration: none;
    color: #FFF;
    text-align: center;
    font-family: Jost;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 133.333% */
}

.lang-div {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.top-card {
    display: flex;
    padding: auto;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 16px;
    border-radius: 16px;
    background: rgba(15, 14, 26, 0.90);
    margin-bottom: 48px;
}

.top-card__contents {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 32px
}

#social-links-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

#social-links-div > a {
    width: 34px;
    height: 34px;
}

#social-links-div > a > img {
    width: 34px;
    height: 34px;
}

.top-card__contents > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.cupons-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    margin-bottom: 48px;
}

.cupons-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
    width: 100%;
}

.cupons-row > a {
    width: 50%;
}

.cupons-row > a > div {
    flex-direction: column;
    justify-items: flex-end;
    width: 100%;
}

.bottom-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 10000px;
    border: 1px solid #E0CAFF;
    background: rgba(224, 202, 255, 0.11);
    width: 100%;
    max-width: 400px;
}

.jpfants-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

div {
    display: flex;
}

img {
    height: 100%;
    width: auto;
    cursor: pointer;
}

span {
    display: block
}

a {
    text-decoration: none;
    color: #FFF;
    margin: 0px;
    width: 100%;
}

hr {
    border: none;
    height: 1px;
    background-color: rgba(224, 202, 255, 0.15);
    width: 100%;
    max-width: 400px;
    margin-bottom: 48px;
}