* {
    box-sizing: border-box;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue",  Arial, sans-serif;
    text-shadow: 0 1px 0 rgba(0,0,0,0.25);
    margin: 0;
    border: none;
}

html, body {
    background-color: #242628;
}

.container {
    display: flex;
    height: 100vh;
    max-height: -webkit-fill-available;
    min-width: 100%;
    align-items: center;
    justify-content: center;
    background-image: url(./assets/world.svg);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-origin: padding-box;
    background-size: cover;
    color: #fff;
    line-height: 1.5em;
}

main {
    padding: 25px;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

img.logo {
    max-width: 35%;
    min-width: 400px;
}

a {
    font-weight: bold;
    color: #eb5463;
}

a:hover {
    color: #fff;
}

h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    line-height: 1em;
    text-align: center;
}

h3 {
    font-size: 24px;
    font-weight: normal;
    line-height: 36px;
    color: #bbb;
    max-width: 75%;
    margin: 10px 0;
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.learn-more {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 25px;
}

.learn-more > a > button {
    background: #f6821f;
    border-radius: 4px;
    border: none;
    width: 180px;
    height: 55px;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    background: rgba(246, 130, 31, 1);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

a > button.insta {
    background: #ba2f21;
}

a > button.linktree {
    background: #575757;
}

@media screen and (max-width: 600px) {
    body {
        width: 100vw;
    }

    img.logo {
        max-width: 80%;
        min-width: 50%;
    }

    h1 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.1rem;
        max-width: 100%;
        line-height: 1.5em;
        margin: 0;
    }

    .learn-more > a > button {
        width: 120px;
        height: 40px;
    }

    .learn-more {
        gap: 15px;
    }
}

.has-detail {
    display: inline;
}
