@font-face {
  font-family: f1;
  src: url(./fonts/Broken\ Up.ttf);
}
@font-face {
  font-family: f2;
  src: url(./fonts/Golden\ Varsity\ Outline.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  width: 100%;
  background-color: #1a1a1a;
}
body {
  position: relative;
  width: 100%;
  height: 100%;
}

body::before {
  content: "";
  position: absolute;
  top: 200px;
  left: 0;
  width: 100%;
  height: 400px; 
  background-image: url(./images/rolls.png);
  background-repeat: no-repeat;
  background-position: 50% 0; 
  background-size: 600px auto;
  z-index: 6;
}

.content h1 {
  color: #ffffff;
  letter-spacing: 20px;
  font-size: 250px;
  font-family: f1;
  text-align: center;
  margin-top: 35px;
  text-shadow: 2px 3px 8px #ad1c1c;

}
.content p {
  width: 420px;
  margin-left: 200px;
  text-align: justify;
  color: #b9b9b9;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.3px;
  padding: 5px 0;
  text-justify: inter-word;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
  z-index: 8;
  font-family: f1;
}
.content button {
  border: 1px solid #fff;
  background: none;
  color: #fffdfd;
  padding: 10px 45px;
  border-radius: 12px;
  font-size: 18px;
  margin-left: 200px;
  margin-top: 20px;
  cursor: pointer;
  z-index: 8;
  position: relative;
  font-family: f1;
}
.images {
  width: 50%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 7%;
  margin-left: 200px;

}
.image {
  border-radius: 12px;
  background-color: #ffffff;
  width: 200px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.image img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border: 2px solid rgb(207, 228, 25);

  width: 200px;
  height: 130px;

}
.image h2 {
  text-align: center;
  position: absolute;
  top: 5%;
  left: 24%;
  font-size: 35px;
  color: rgb(255, 255, 255);
  text-shadow: 2px 3px 8px #050201;
  font-family: f1;
  letter-spacing: 2px;
}

