@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
  background-image: url('https://i.pinimg.com/webp85/736x/3b/c5/aa/3bc5aad1bcac7b49b0de1523d1092764.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 30px;
  color: black;
}

h1 {
  text-align: center;
  font-size: 40px;
  color: black;

  border: 5px solid red;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;

  background: white;
}

h2 {
  text-align: center;
  font-size: 25px;
  color: black;
}

section {
  background: white;
  padding: 25px;
  margin-bottom: 20px;

  border: 5px solid red;
  border-radius: 20px;
}

p {
  font-size: 15px;
  color: red;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.insidegrid {
  background: black;
  color: red;

  text-align: center;
  padding: 20px;

  border-radius: 15px;
  border: 5px solid red;

  font-size: 20px;

  transition: 0.3s;
}

.insidegrid:hover {
  background: red;
  color: black;
}

.responsiveimg {
  width: 100%;
  margin-top: 15px;

  border-radius: 20px;
  border: 5px solid red;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 35px;
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }

  body {
    padding: 20px;
  }
}