@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&display=swap');
body {
    margin: 0;
    padding: 0;
  }
.bgimg {
    background-image: url('./images/background.jpg');
    background-size: cover;
    background-position: center;  
    background-repeat: no-repeat; 
    min-height: 100vh;
  }
.titre-principal {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    text-align: center;
    color: rgb(255, 255, 255); 
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 60px;
    animation: fadeIn 1.2s ease-in-out;
    padding: 20px;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.item {
    height: 700px;
    width: 500px;
    background-image: url('./images/helyadungeon2.0.png');
    background-position: center;
    background-size: cover;
    border-radius: 25px;
    transition: transform 0.6s, box-shadow 0.6s;
    position: relative;
    padding: 30px;
}
.item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #555;
}
.item2 {
    height: 700px;
    width: 500px;
    background-image: url('./images/helyashades.png');
    background-size: cover;
    border-radius: 25px;
    transition: transform 0.6s, box-shadow 0.6s;
    position: relative;
    padding: 30px;
}
.item2:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #555;
}
.item3 {
    height: 700px;
    width: 500px;
    background-image: url('./images/helyabombe.png');
    background-position: center;
    background-size: cover;
    border-radius: 25px;
    transition: transform 0.6s, box-shadow 0.6s;
    position: relative;
    padding: 30px;
}
.item3:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #555;
}
.button {
    padding: 30px 60px;
    font-size: 30px;
    color: rgb(255, 255, 255);
    background-color: #ffae00;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
}
.button:hover {
  transform: translateX(-50%) scale(1.05);
}
.container-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}