.start-screen-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 900px;
  height: 480px;
  border-radius: 10px;
  border: 2px solid white;
  background-size: 100%;
  background-image: url("../img/background2.jpg");
}

.start-screen-top {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 16px 16px 0px 016px;
  gap: 24px;
}

.start-screen-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.start-screen-bottom {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.start-screen-img {
  width: 32px;
  height: 32px;
}

.start-screen-img:hover {
  cursor: pointer;
  transform: scale(1.2);
  transition: transform 0.5s ease-in-out;
  filter: brightness(150%);
}

.btn-start-screen {
  width: 300px;
  padding: 8px 24px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 1), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

  font-family: "Uncial Antiqua", serif;
  font-weight: 400;
  font-size: 32px;

  background-color: transparent;
  backdrop-filter: sepia(90%);
  color: #efefef;
}

.btn-start-screen:hover {
  cursor: pointer;
  transform: scale(1.2);
  transition: transform 0.5s ease-in-out, color 0.5s ease-in-out;
  color: rgb(255, 0, 0);
}

.btn-start-screen-bottom {
  padding: 4px 16px;
  border-radius: 4px;
  border: 1px solid #efefef;
  background-color: transparent;
  color: #efefef;
}

.btn-start-screen-bottom:hover {
  cursor: pointer;
  transform: scale(1.2);
  transition: transform 0.5s ease-in-out;
  backdrop-filter: sepia(90%);
  color: rgb(255, 0, 0);
}

@media only screen and (max-width: 1367px) {
  .start-screen-wrapper {
    width: 100%;
    height: 100vh;
    background-position: bottom;
    background-size: cover;
    border: none;
    border-radius: 0px;
  }
}

@media only screen and (max-height: 480px) {
  .start-screen-wrapper {
    height: 100vh;
  }
}
