* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Montserrat', sans-serif; background: #0b0b0b; color: white; line-height: 1.6; } /* HERO */ .hero { height: 100vh; background: url('https://images.unsplash.com/photo-1554068865-24cecd4e34b8') center/cover no-repeat; display: flex; align-items: center; justify-content: center; position: relative; } .overlay { text-align: center; background: rgba(0,0,0,0.6); padding: 40px; } .hero h1 { font-size: 48px; font-weight: 700; } .hero p { font-size: 20px; margin: 15px 0; } /* BUTTON */ .btn { display: inline-block; padding: 12px 30px; background: #00ff88; color: black; text-decoration: none; font-weight: 600; margin-top: 10px; transition: 0.3s; } .btn:hover { background: white; } /* SECTIONS */ section { padding: 80px 20px; text-align: center; } h2 { font-size: 32px; margin-bottom: 20px; } /* RESULTATER */ .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 900px; margin: auto; } .card { background: #1a1a1a; padding: 30px; border-radius: 10px; transition: 0.3s; } .card:hover { transform: translateY(-5px); background: #222; } /* SPONSOR */ .sponsor { background: #111; } /* FOOTER */ footer { text-align: center; padding: 30px; background: black; font-size: 14px; }