* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
/*    100-900 italic*/
}

/* HOME */

a {
    text-decoration: none;
}

body {
    background: url('../images/Flag_of_Ukraine.svg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    min-height: 100vh;
    width: 100%;
}

/* HEADER */

.box-global {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    
    padding-left: 10px;
    padding-right: 10px;
}

.box-header {
    
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-link {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

/* MAIN */

.box_main {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.box_links {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    
    margin: 30px auto;
}

.img_links {
    width: 18px;
    height: 18px;
    margin: 5px;
    transition: .2s linear;
}

.img_links:hover {
    opacity: 50%;
}

.main_link {
    transition: .2s linear;
}

.info-word {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    
    text-align: center;
    margin: 10px 0;
}

.box-mail {
    display: flex;
}

.mail-word {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    margin: 0 auto;
    transition: .2s linear;
}

.mail-word:hover {
    opacity: 50%;
}

.if_youtube {
    width: 100%;
    max-width: 620px;
    
    height: 320px;
    border-radius: 15px;
    
    margin: 10px;
}

/* FOOTER */

.box_footer {
    text-align: center;
    
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .5px;
    color: #fff;
    margin-top: 15px;
    margin-bottom: 40px;
}

.footer_link {
    color: #fff;
}

/* ANIMATIONS */

.box-global {
    opacity: 0;
    animation-name: anim;
    animation-delay: .3s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes anim {       
    100% {
        opacity: 1;
    }    
}

@keyframes anim_end {       
    100% {
        z-index: -1;
        opacity: 0;
    }   
    
}