/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;900&display=swap');

html {
    /* font-family: Helvetica Neue,Helvetica,Arial,sans-serif; */
    font-family: 'Roboto', sans-serif;
    color: #ebebeb;
    overflow-y: hidden;
    overflow-x: hidden;
}

.earth {
    position: absolute;
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    left: 25%;
    top: 0;
    z-index: -1;
}

.background {
    background-color: #141414;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.question {
    text-align: center;
    font-size: 7rem;
    /* -webkit-text-stroke: 0.5px #141414; */
    margin-top: 1.5rem;
}

#country {
    /* white-space: nowrap; */
    font-size: 5rem;
}

/* Response layout for mobile */
@media screen and (max-width: 600px) {
    .question {
        font-size: 4rem;
        margin-top: 1.5rem;
    }

    #country {
        font-size: 3rem;
    }

    #answer {
        font-size: 3rem;
    }

    #guess {
        font-size: 2rem !important;
    }

    .button {
        font-size: 1rem !important;
        -webkit-text-stroke: 0 !important;
        padding: 0.5rem !important;
    }

    .earth {
        width: 90% !important;
        left: 5% !important;
        top: 30% !important;
    }

    #score {
        font-size: 2.5rem;
    }
}

#answer {
    white-space: nowrap;
    font-size: 5rem;
}

#guess {
    text-align: center;
    margin: 0 auto;
    display: block;
    font-size: 6rem;
    /* -webkit-text-stroke: 3px black; */
    padding-top: 0.5rem;
    padding-bottom:0.5rem;
    border-radius: 2rem;
    border: 0;
    color: #141414;
}

:-ms-input-placeholder {
    color: #141414;
}

.buttons {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
}

.button {
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    font-size: 4rem;
    /* -webkit-text-stroke: 3px black; */
    padding-left: 3rem;
    padding-right: 3rem;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #525252;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color:#141414;
}

#submit:active,#next:active,#try:active {
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}

#tsparticles {
    position: absolute;
    z-index: -2;
}

footer {
    margin-top: auto;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

#version {
    /* -webkit-text-stroke: 0.1px black; */
    margin: 0;
}

#score {
    font-size: 3rem;
    /* -webkit-text-stroke: 0.1px black; */
    margin: 0;
}