html,
body {
    color: #fff;
    padding: 0;
    margin: 0;
}

html {
    font-family: Montserrat, "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    overflow-y: auto;
}

body {
    background-color: #000000;
}

main.frontpage a {
    -webkit-transition: color 0.2s ease-out;
    -moz-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
    color: #fff;
}

main.frontpage a:hover {
    color: #333;
}

span.game-description {
    font-size: 2vh;
    line-height: 2.5vh;
    font-family: 'DynaPuff';
}

main.page a {
    color: #fff;
    -webkit-transition: text-shadow 0.1s ease-out;
    -moz-transition: text-shadow 0.1s ease-out;
    transition: text-shadow 0.1s ease-out;
}

main.page a:hover {
    color: #fff;
    text-shadow: 0px 0px 12px rgba(255, 255, 255, 0.75);
}

h1 {
    font-size: 9rem;
}

h2 {
    font-size: 3rem;
    font-weight: normal;
}

span {
  text-shadow: 0 0 0px rgba(0,0,0,0.8), 
               0 0 5px rgba(0,0,0,0.6);
}

img.portrait {
    box-sizing: border-box;
    border-radius: 50%;
    border: 10px solid #fff;
    margin: 2em 3em;
    width: 100%;
    height: auto;
    max-width: 300px;
    max-height: 300px;
}

img.glow {
    -webkit-transition: -webkit-filter 0.1s ease-out;
    -moz-transition: -webkit-filter 0.1s ease-out;
    transition: -webkit-filter 0.1s ease-out;
}

img.glow:hover {
    -webkit-filter: drop-shadow(0px 0px 4px rgba(255, 255, 255, 0.75));
    filter: drop-shadow(0px 0px 4px rgba(255, 255, 255, 0.75));
}

.column {
    flex: 1;
}

main.frontpage {
    margin-top: 20vh;
    flex-direction: column;
    margin-top: 0;
}

main.frontpage h1 {
    margin-left: -10px;
    margin-bottom: 0.4em;
    margin-top: 0;
}

main.frontpage h2 {
    margin-left: -4px;
    margin-top: 0;
}

main.frontpage .links {
    margin-top: 2.5rem;
    font-size: 1.5rem;
}

main.frontpage .links a {
    margin-right: 0.5rem;
    text-decoration: none;
}

main.frontpage img.portrait {
    margin: 0;
}

main.page {
    margin-top: 2vh;
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

main.page > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

main.page > div > div {
    margin: 0;
    width: 100%;
}

main.page img {
    height: auto;          
    max-width: 100%;       
    object-fit: contain; 
}

main.page .links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
}

main.page .links .social-links {
    display: flex;
    gap: 30px;
}

main.page .links a {
    font-size: 32px;
    text-decoration: none;
}

main.page .links a[href*="privacy"] {
    font-size: 24px;
    margin-top: 10px;
}

@media screen and (max-width: 460px) {
    body {
        min-width: 460px;
        overflow-x: auto;
    }

    main.page > div {
        min-width: 460px;
        padding: 0 10px;
    }
    
    main.page .links {
        gap: 15px;
    }
    
    main.page .links a {
        font-size: 28px;
    }
    
    main.page .links a[href*="privacy"] {
        font-size: 20px;
    }
}

footer {
    display: flex;
    margin-top: 3rem;
    font-size: 0.75rem;
    flex-direction: column;
}

