* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "SimSun";
  src: url('/fonts/SimSun.woff') format('woff'),
    url('/fonts/SimSun.ttf') format('truetype');
}

.content {
  border: 1px solid white;
  min-width: 50%;
  max-width: 750px;
  margin: 20px 0;
  padding: 10px 10px;
  font-family: Arial, Helvetica, sans-serif;

  transition: border-color 500ms ease-in-out;
  height: 90vh;
}

.content:hover {
  border-color: red;
}

.platform {
  border-bottom: 1px solid black;
  width: fit-content;
}

a {
  color: blue;
  font-size: larger;
  font-weight: bold;
  font-family: SimSun, 'Times New Roman', Times, serif;
  backdrop-filter: blur(5px);
}

h1 {
  backdrop-filter: blur(1px);
}

.center,
.download,
img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

a:hover {
  color: red;
}

#links {
  display: flex;
  flex-direction: column;
}


button {
  background-color: white;
  border: none;
}

img {
  transition: width 700ms ease-in-out;
  width: 12%;
}

img:hover {
  /* scale: 2; */
  width: 20%;
}
