*{
  margin: 0;
  padding: 0;
  text-decoration: none;
  
}
body{
  background-image: url(..//IMAGES/background.gif);
}


.mainContainer{
  position: relative;
  width: auto;
  height: auto;

  display: flex;

  margin: auto;
  justify-items: center;
  justify-content: center;
  top: 300px;
  
}

.card {
  position: relative;
  width: 190px;
  height: 254px;
  color: #fff;
  transition: 0.5s;
  cursor: pointer;
  margin: 15px;
  font-size: 25px;
}

.card:hover {
  transform: translateY(-20px);
}

.card::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, #ffbc00, #ff0058);
  border-radius: 1.2em;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ffbc00, #ff0058);
  filter: blur(30px);
}

.card span {
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
  border-radius: 1em;
}

.card span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
}

.card .content {
  position: relative;
  padding: 10px;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.98em;
  color: white;
}

.header{
  background-image: url(../IMAGES/texture.jfif);
  width: auto;
  height: 50px;
}
.footer{
  position: fixed;
  background-image: url(../IMAGES/texture.jfif);
  bottom: 0;
  width: 100%;
  height: 50px;
}
.title{
  position: relative;
  top: 150px;
  text-align: center;
  background-image: url(../IMAGES/texture1.jfif);
  width: 450px;
  height: 224px;
  align-items: center;
  justify-content: center;
  margin: 0;
  left: 760px;
}
.title h1{
  position: relative;
  top: 75px;
  color: black;

}
.icon{
  
  scale: 200%;
  position: relative;
  bottom: 50px;
  left: 120px;
  color: white;
  text-decoration: none;
  cursor: pointer;
}
.icon:hover{
  color: black
}