.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.main-logo {
  display: block;
  margin-top: 5vh;
  width: 100%;
  max-width: 500px;
}

.play-button {
  margin: 20px 0;
  background-color: green;
  color: white;
  font-family: Roboto;
  font-size: 35px;
  padding: 10px 20px;
  border: none;
  outline: none;
  border-radius: 20px;
  cursor: pointer;
  max-width: 200px;
}

.logos {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.linkedin {
  max-height: 30px;
  max-width: 30px;
}

.github {
  max-height: 30px;
  max-width: 30px;
  margin-left: 15px;
  filter: brightness(0);
}

.credit-name {
  font-family: Roboto;
  font-size: 20px;
  margin-top: 10px;
}

.footer {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body {
    background-image: url("/images/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: rgb(30, 30, 30);
    overflow: hidden;
}

@media only screen and (max-height: 600px) and (orientation: landscape) {
  body {
    overflow-y: scroll;
  }
  .container {
    margin-bottom: 100px;
  }
  .footer {
    margin-top: 5%;
    position: relative;
  }
}
