* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: rgb(244, 245, 215);
}
@font-face {
  font-family: scoreboard;
  src: url("font.ttf");
}
.container {
  display: flex;
  margin: 70px auto;
  background: rgb(255 0 0 / 3%);
  max-width: 1200px;
  max-height: 100%;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 20px;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#main-container {
  position: relative;
  background: rgb(244, 245, 215);
  border: 2px solid black;
  width: 600px;
  height: 400px;
}
.container > h1 {
  font-family: "Creepster", cursive;
  font-weight: 100;
  color: #d82828;
  letter-spacing: 1.5px;
  font-size: 50px;
}

.ant-container {
  position: absolute;
  background-image: url("../assets/image/antNormal.svg");
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  padding: 0px;
  bottom: 0;
  left: 0;
  /* background: lightpink; */
  border-radius: 50%;
}

#side-container {
  background-color: #222222;
  background-image: linear-gradient(135deg, #444444 0%, #222222 100%);
  width: 600px;
  height: 100px;
  border: 10px double rgb(244 245 215);
  color: rgb(244, 245, 215);
  align-self: center;
  font-family: scoreboard;
  padding: 25px;
  text-align: center;
}
