html,
body {
    height: 100%;
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    color: #fff;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.section-holder {
    flex: 1;
}

.background {
    background: url("imgs/background.png") no-repeat center center fixed;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.landing-screen {
    display: flex;
    height: 100%;
}



.logo-top,
.logo-bottom {
    padding: 25px;
}

button.btn {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

button.btn:hover {
    transform: translateY(-3px);
}

.lang-page {
    display: none;
    max-width: 950px;
}

.card-row {
    background: white;
    color: black;
    padding: 35px 20px;
    border-radius: 25px;
    box-shadow: 1px 1px 10px 2px;
}

.card-row img {
    /*max-width: 100%;*/
    /*max-height: 20vh;*/
    width: 200px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .card-row {
        text-align: center;
    }

    .card-row .col-md-6 {
        margin-bottom: 1.5rem;
    }
}