@import url("https://fonts.google.com/specimen/Press+Start+2P");

@font-face {
  font-family: "Press Start 2P";
  src: local("PressStart2P-Regular.ttf"),
    url("../fonts/PressStart2P-Regular.ttf") format("truetype");
}


* {
  user-select: none;
}

body {
  margin: 0;
  background-image: linear-gradient(to bottom, #000000 50%, #ef7000 100%);
  overflow-y: hidden;
  overflow-x: hidden;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.game {
  margin: auto auto;
  position: relative;
  background-image: url(../Assets/bgTitle.png);
  background-size: cover;
  box-shadow: 1px 2px 50px rgba(0, 0, 0, 0.935);
  overflow-x: hidden;
  overflow-y: hidden;
}

.title {
  color: white;
  margin: -20px;
  font-size: 18px;
  font-weight: bolder;
  font-family: "Press Start 2P";
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  line-height: 100px;
}

.title img {
  width: 600px;
}

.thumbs {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
}
.thumbs img {
  border: 8px solid black;
  border-radius: 10%;
  width: 200px;
  height: 130px;
}

.thumbs img:hover {
  border: 8px solid white;
  border-radius: 10%;
  width: 200px;
  height: 130px;
}
