@font-face {
  font-family: usmani;
  src: url("usmani.ttf");
}

body {
  background-color: rgb(255, 226, 171);
  color: rgb(37, 37, 37);
  text-align: center;
  font-family: usmani;
  padding: 5px;
}

h1 {
  font-size: 7rem;
  color: rgb(38, 38, 38);
  margin-bottom: 5px;
  margin-top: 5px;
}

.description {
  text-align: center;
  margin: 0 auto;
  width: 500px;
  font-size: 1.5rem;
}

.link-wrapper a {
  display: inline-block;
  margin: 15px;
  padding: 15px 30px;
  font-size: 1.5rem;
  text-decoration: none;
  color: #282828;
  background: #ffa449;
  border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
  font-weight: 500;
}

.link-wrapper a:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.link-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.link {
  width: 300px;
}

.img-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.im {
  border: 16px solid rgb(67, 67, 67);
  border-radius: 10px;
  width: 400px;
}

#website-version {
  font-family: "Times New Roman", Times, serif;
  font-size: 7px;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .img-wrapper img {
    width: 275px;
  }

  .link-wrapper {
    flex-direction: column;
  }
  h1 {
    font-size: 5rem;
  }

  .description {
    font-size: 1.25rem;
    width: 90%;
  }
}
