* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
    overflow: hidden;
}

.mainDiv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    width: 100%;
    position: fixed;
    top: 7%;
    left: 0;
    right: 0;
    z-index: 10;
}

.dllinks {
    display: flex;
    justify-content: space-between;
    width: 500px;
    gap: 1rem;
    flex-wrap: wrap;
}

.dllinks img {
    width: 200px;
    max-width: 100%;
}

.smlinks {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.smlinks img {
    display: inline-block;
    height: 50px;
    width: auto;
}

.welcome {
    font-size: 40px;
    margin: auto;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#zagruzhai {
    top: 30%;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
}

.big {
    font-size: 32px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
}

#zahodi {
    top: 55%;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
}

p {
    font-weight: 100;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

#myVideo {
    min-height: 100%;
    min-width: 100%;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -100;
    object-fit: cover;
}

/* FOOTER */
.footer {
    background: rgba(44, 95, 45, 0.95);
    color: white;
    text-align: center;
    padding: 2rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer a {
    color: #f39c12;
    text-decoration: none;
    margin: 0 1rem;
    display: inline-block;
    transition: color 0.3s;
}

.footer a:hover {
    color: #e67e22;
    text-decoration: underline;
}

.footer p {
    color: white;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mainDiv {
        top: 5%;
    }
    
    .welcome {
        font-size: 28px;
    }
    
    .big {
        font-size: 22px;
    }
    
    .dllinks {
        width: 100%;
        max-width: 400px;
    }
    
    .dllinks img {
        width: 150px;
    }
    
    .smlinks {
        gap: 1rem;
    }
    
    .smlinks img {
        height: 40px;
    }
    
    #zagruzhai {
        top: 28%;
    }
    
    #zahodi {
        top: 52%;
    }
    
    .footer {
        gap: 1rem;
        padding: 1rem;
    }
    
    .footer a {
        margin: 0 0.5rem;
        font-size: 0.9rem;
    }
}