@font-face {
    font-family: Galderglynn;
    src: url("assets/fonts/galderglynntitlingrg_bold.ttf");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Inter;
    src: url("assets/fonts/Inter_28pt-Regular.ttf");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}



body {
    margin: 0;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url("assets/bg.png");
    background-size: cover;

}

.container {
    padding: 20px 0;
    max-width: 390px;
}

.container > img {
    max-width: 100%;
    height: auto;
}

h1 {
    font-family: Galderglynn, Arial, sans-serif;
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 26px;
    line-height: 31px;
    font-weight: 900;
    text-align: center;
    color: white;
}

.link-container {
    display: flex;
    align-items: center;
    width: 346px;
    gap: 18px;
    color: #03002A;
    text-decoration: none;
}

.link-container > div {
    text-align: center;
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.link-container > span {
    width: 287px;
    font-family: Inter, Arial, sans-serif;
    background-color: white;
    border-radius: 91px;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 21px;
}

@media (max-width: 389px) {
    .link-container > span {
        width: 250px;
        font-size: 14px;
        line-height: 16px;
    }
}

.link-container + .link-container {
    margin-top: 20px;
}