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


body,
html {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    background-color: #f4f4f4;
    font-family: "Montserrat", serif;
}

h1 {
    color: #272727;
}


.bar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    height: 7vh;
    background-color: #272727;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2vw;
    box-shadow: 0 0.5vh 1vh rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.view-container {
    display: flex;
    margin: auto;
}

  
  .bar-icon-left, .bar-icon-right {
    height: 4vh;
    width: auto;
    cursor: pointer;
    border-radius: 50%;
  }
  
  .bar-icon-right {
    margin-right: 4vw;
  }
  
  .bar-title {
    font-size: 2.5vh;
    color: white;
    font-weight: bold;
    text-align: center;
    flex-grow: 1;
  }

.container {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    height: 100vh;
    width: 100vw;
    margin: auto;
  }

  .bar-icon-left, .bar-icon-right {
    height: 4vh;
    width: auto;
    cursor: pointer;
    border-radius: 50%;
  }
  
  .bar-icon-right {
    margin-right: 4vw;
  }
  
  .bar-title {
    font-size: 2.5vh;
    color: white;
    font-weight: bold;
    text-align: center;
    flex-grow: 1;
  }

button {
    background-color: #333;
    color: white;
    border: none;
    border-radius: 1vh;
    padding: 10px 20px;
    font-size: 2vh;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vh;
}



.container {
    max-width: 760px;
    width: 100%;
  }
.places .place {
    display: flex;
    align-items: center;
    font-size: 21px;
    margin-bottom: 24px;
}
.places .place:last-child {
    margin-bottom: 0px;
}
.place .first {
    display: flex;
    align-items: center;
    margin-left: 1vw;
    width: calc(35% - 32px);
}
.place .first img {
    width: 56px;
    margin-left: auto;
    border-radius: 50%;
}
.place .second {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 1vw;
    width: 68%;
}
.place .second div {
    width: 2px;
    height: 24px;
    background: black;
    margin-left: auto;
}
.place .second p:last-child {
    margin-left: auto;
}
.second p:first-child {
    width: 45%;
}

@media (max-width: 768px) {
    .game-container {
        background-size: cover;
    }

    .game-canvas {
        width: 100%;
        height: auto;
    }

    .bar {
        height: 10vh;
    }

    .bar-icon-left,
    .bar-icon-right {
        height: 5vh;
    }

    .bar-title {
        font-size: 3vh;
    }

    .place .second {
        font-size: 15px;
    }

    .place .second {
        font-size: 15px;
    }
}

