*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
background:#050505;
color:white;
}

header{

display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:#000;

}

.logo img{

height:70px;

}

nav a{

color:white;
margin-left:30px;
text-decoration:none;
font-weight:600;

}

.hero{

height:100vh;

background:url(img/hero.jpg) center center/cover;

position:relative;

}

.overlay{

width:100%;
height:100%;

background:rgba(0,0,0,.65);

display:flex;
align-items:center;

}

.hero-text{

padding-left:8%;
max-width:650px;

}

.hero h1{

font-size:65px;
font-weight:800;

line-height:1.1;

}

.hero span{

color:#ffd400;

}

.hero p{

margin:30px 0;

font-size:20px;

}

.btn{

display:inline-block;

background:#ffd400;
color:#000;

padding:16px 34px;

border-radius:10px;

text-decoration:none;

font-weight:bold;

transition:.3s;

}

.btn:hover{

transform:scale(1.05);

}

section{

padding:80px 8%;

}

h2{

text-align:center;

margin-bottom:60px;

font-size:42px;

color:#ffd400;

}

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.card{

background:#111;

padding:35px;

text-align:center;

border-radius:15px;

transition:.3s;

font-size:45px;

}

.card h3{

font-size:24px;

margin:20px 0;

color:#ffd400;

}

.card:hover{

transform:translateY(-10px);

background:#181818;

}

.about{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

text-align:center;

}

.about div{

background:#111;

padding:30px;

border-radius:15px;

}

#kontakt{

text-align:center;

}

#kontakt p{

font-size:22px;

margin:20px;

}

footer{

background:#000;

padding:30px;

text-align:center;

color:#999;

}