:root {
    --bg-footer: #2b2b2b;
}

.background {
    background: black;
    color: white;
    border-radius: 12px;
    transition: background 0.3s ease-in-out;
}

.banner {
    position: relative;
    width: 100%;
    min-height: 450px;
    color: white;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/startbanner_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 0;
}

.banner > .container {
    position: relative;
    z-index: 1;
}

.list-group-item{
    background-color: var(--bg-footer) !important;
    color: white;
}


.title {
    font-size: 8vw;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .title {
        font-size: 12vw;
    }
}

.half-section {
    background: linear-gradient(to bottom, #000 50%, transparent 50%),
    url('/assets/images/Background.png') center bottom / cover no-repeat;
    color: white;
    width: 100%;
}

.backgroundblock {
    background:
            linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), /* darkness layer */
            url('/assets/images/Background.png') center/cover no-repeat;
    color: white;
    width: 100%;
}

.button{
    background-color: white;
    color: black;
    text-decoration: none;
    padding: 8px 20px;
    font-weight: bold;
}
