.logo {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.logo-image {
  opacity: .1;
  background-image: url("./images/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 780px;
  width: 370px;
  margin: 15% auto;
  padding: 20px;
  transition: all 2s ease-in-out;
}

.game {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
}

.app-container {
  display: flex;
  justify-content: space-around;;
  flex: none;
  flex-direction: row;
  align-items: center;
  height: 550px;
}

.modal-header {
  /* font-family: Pacifico; */
  text-align: center;
  color: #28cbe0;
  font-size: 22px;
  padding: 15px;
}

.modal-text {
  /* font-family: monospace; */
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 20px;
}

.modal-img {
  background-image: url("./images/keys.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 174px;
  width: 381px;
}

.modal-button {
  text-align: center;
  /* font-family: Pacifico; */
  color: #28cbe0;
  padding: 20px;
}

.modal-button:hover {
  cursor: pointer;
  color: #1fafc1;
}

.info-button {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* font-family: 'Londrina Sketch', cursive; */
  color: #28cbe0;
  padding-top: 5px;
}

.button {
  padding: 0 12px 0 12px;
  font-size: 18px;
}

.button:hover {
  cursor: pointer;
  color: #1fafc1;
}

.game-logo {
  background-image: url("./images/logo-small.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 75px;
  width: 252px;
  margin: 0 auto;
}

.level {
  text-align: center;
  /* font-family: monospace; */
  font-size: 20px;
  font-weight: bold;
  color: #f77d51;
}

.about-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 400px;
}

.about-links > a {
  transition: all .5s ease-in-out;
}

.about-links > a:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.portfolio {
  background-image: url("./images/portfolio-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 100px;
  width: 100px;
}

.linkedIn {
  background-image: url("./images/linkedIn.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 100px;
  width: 100px;
}

.github {
  background-image: url("./images/github-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 100px;
  width: 100px;
}
.game-container {
  background-color: rgb(94, 168, 214);
  height: 520px;
  width: 310px;
  min-width: 360px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 0px 10px black;
  transition: all 1s ease-in-out;
}

.canvas-container {
  background-color: rgb(65, 65, 65);
  margin: 0 auto;
  width: 275px;
  height: 455px;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px 5px black;
  padding: 5px 0px 0px 6px;
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.1);
    transition: all 1s ease-in-out;
}

/* Modal Content/Box */
.modal-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    background-color: #fefefe;
    margin: 10% auto;
    padding: 10px;
    border: 1px solid #888;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

#on-screen-buttons {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#left {
  background-image: url("./images/left.png");
}

#right {
  background-image: url("./images/right.png");
}
#shoot {
  background-image: url("./images/shoot.png");
}

#left:hover {
  background-image: url("./images/left-hover.png");
}

#right:hover {
  background-image: url("./images/right-hover.png");
}

#shoot:hover {
  background-image: url("./images/shoot-hover.png");
}

.shoot-button {
  background-repeat: no-repeat;
  background-size: contain;
  height: 100px;
  width: 100px;
}

.shoot-button:hover {
  cursor: pointer;
}
