@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}
:root {
    --light-color: #FEFEFE;
    --dark-color: #000000;
    --vibrant-color: #67D3DF;
}
body {
    overflow-x: hidden;
    background-color: black;
    font-family: "Outfit", sans-serif;
}

h1 {
    font-weight: 700;
}
h2 {
    font-weight: 600;
}
p {
    font-weight: 400;
}

.hero-section {
    position: relative;
    background: url('/justfoto-6163.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 70vh;
    border-radius: 30px;
    width: 95%;
    margin: 40px auto;
    
}

/* .hero-section img {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 30px;
} */

.hero-section .headline {
    font-size: 1.5rem;
    color: var(--light-color);
    filter: drop-shadow(0px 0px 10px rgba(1, 1, 1, 0.5));
    margin: 30px 50px;
    text-align: center;
}
.section {
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo-main {
    margin: 20px auto;
    width: 200px;
}