body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: #f4f4f9;
}
.container {
  width: 70%;
  height: 70%;
  border: 4px solid #333;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}
h1 {
  font-size: 4rem;
  font-family: Arial, sans-serif;
  color: #222;
}

.container .icons {
  margin: 70px; /* margin adjust kar liya thoda kam */
  font-size: 2rem; /* icons ko bada kar diya */
  display: flex;
  gap: 50px; /* agar multiple icons hain toh gap maintain karne ke liye */
  
}

.icons i{
  font-size: 25px; /* icon size */
  border: 3px solid black; /* border size */
  border-radius: 50%; /* circle banane ke liye */
  padding: 10px; /* border ko icon se door karne ke liye */
  display: inline-block;
  transform: scale(1);
  transition: 0.6s;
  color: black
}

.icons i:hover{
  background-color: blue;
  transform: scale(1.2);
  transition: 0.6s
}

.gb-btn{
  height: 100px
}

.gb-btn #go-back{
  margin: 50px;
  background-color: #00e1ff;
  border: none;
  padding: 10px;
  border-radius: 10px;
  color: white;
  transform: scale(1);
  transition: 0.6s;
  text-decoration: none;
}

.gb-btn #go-back a{
  text-decoration: none;
  color: white
}

.gb-btn #go-back:hover{
  background-color: #075661;
  transition: 0.6s;
  transform: scale(1.2);
  cursor: pointer;
}