


@font-face {
    font-family: 'Trajan Pro Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Trajan Pro Bold'), url('TrajanPro-Bold.woff') format('woff');
}

body {
    
    background-color: #000;
    overflow: hidden;
}

#locationImg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit:contain;
    overflow: hidden;
}

#guessButton {
    height:min-content;
    width: 100%;
}



#mapCanvas {
    width: 100%;
    height: 100%;
}

#mapContainer {
    background-color: #000000;
    transition: all 0.3s ease-in-out;
    position: absolute;
    width: 20%;
    height: auto;
    right: 0;
    bottom: 0;
    margin: 1rem;
    border-radius: 1rem;
    border-color: #000;
    border-style: solid;
    border-width: 1rem;
    aspect-ratio: 25 / 17;
    image-rendering: optimizeSpeed;
}

#mapContainer:hover {
    width: 50%;
    height: auto;
}



#scoreContainer {
    font-family: 'Trajan Pro Bold';
    font-size: 2rem;
    color: #FFF;
    position: absolute;
    top: 0;
    left: 0;
}

#gameOverWindow{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.863);
    color: #FFF;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    font-family: 'Trajan Pro Bold';
    font-size: 2rem;
    z-index: 1000;
    height: 50%;
    width: 30%;
    min-width: max-content;
    display: none;
    flex-direction: column;
    justify-content: center;
}

#loadingText {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Trajan Pro Bold';
    font-size: 2rem;
    color: #FFF;
    z-index: 1000;
}

button {
    font-family: 'Trajan Pro Bold';
    font-size: 2rem;
    background-color: transparent;
    color: #FFF;
    border: 2px solid #FFF;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}

button:hover {
    background-color: #FFF;
    color: #000000;
}

button:disabled {
    background-color: #555;
    color: #999;
    border: 2px solid #999;
    cursor: not-allowed;
}

p {
    margin: 1rem;
}
