* {
    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%;
}


.youtube-ce {
    display: flex;
    justify-content: center;
}

.youtube {
    margin-top: 35px;
    margin-left: 10px;
    margin-right: 10px;
    
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    width: 100%;
    margin-bottom: 30px;
    height: 500px;
    width: 800px;
    border-radius: 20px;
}

.video {
    
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    width: 100%;
    margin-bottom: 30px;
}

.img_gox {
    width: 100%;

}

.img_jpg{

    width: 100%;
    filter: grayscale(100%);

    margin-bottom: 30px;
}

img {
    border-style: none;
}

/* HEADER */

.box-global {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;

    padding-left: 10px;
    padding-right: 10px;
}

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

}

.header-link {
    font-family: "Heartless";
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 10px;
}

/* MAIN */

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


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

.img_music {
    border-radius: 25px;
    height: 200px;
    width: 350px;
    margin: 8px;
    transition: .2s linear;
    
}

.img_music:hover {
    opacity: 70%;
}

.img_music2 {
    border-radius: 25px;
    height: 250px;
    width: 450px;
    margin: 8px;
    transition: .2s linear;
}

.img_music2:hover {
    opacity: 70%;
}

.img_music_little {
    border-radius: 5px;
    height: 125px;
    width: 125px;
    margin: 8px;
    transition: .2s linear;
    filter: grayscale(0%);
}

.img_music_little:hover {
    filter: grayscale(100%);
}

.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: #222;
    font-size: 15px;
    font-weight: 800;

    text-align: center;
    margin: 10px 0;
}

.box-mail {
    display: flex;
}

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

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

/* FOOTER */

.box_footer {
    text-align: center;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: .5px;
    color: #222;
    margin-top: 25px;
    margin-bottom: 32px;
}

.footer_link {
    color: #222;
}

/* FORM */

.form {
    width: 300px;
    height: auto;
    border-radius: 10px;

    margin: 0 auto;
}

.email {
    display: flex;
    margin: 10px auto;
    padding: 10px;

    width: 280px;
    height: 35px;

    background: #fff;
    opacity: 70%;
    color: #000;

    font-weight: 700;
    font-size: 15px;
    outline: none;

    border-width: 0px;
    border-radius: 5px;
    letter-spacing: 1.2px;
    transition: opacity .2s linear;
}

.msg {
    display: flex;
    margin: 10px auto;
    padding: 10px;

    width: 280px;
    height: 80px;

    color: #000;
    background: #fff;
    opacity: 70%;

    font-size: 14px;
    font-weight: 700;
    border-width: 0px;
    border-radius: 5px;

    resize: none;
    outline: none;

    letter-spacing: 1.2px;
    transition: opacity .2s linear;
}


.msg_word {
    font-size: 10px;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
}

.button {
    display: flex;
    justify-content: center;
    margin: 0 auto;

    width: 180px;
    height: 30px;

    background: #2d2525;
    color: #fff;

    outline: none;
    border: 0px solid #000;
    border-radius: 40px;
    transition: 300ms linear;
    opacity: 70%;
}

.button:hover {
    opacity: 100%;
    cursor: pointer;
}

.info-word-form {
    color: #000;
    font-size: 15px;
    font-weight: 800;

    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}


/* MEDIA */

/*
@media (max-width: 1800px) {
    .img_music, .img_music2 {
    height: 300px;
    width: 300px;
    margin: 8px;
    transition: .2s linear;
    }

}

@media (max-width: 800px) {
    .img_music, .img_music2 {
    height: 300px;
    width: 300px;
    margin: 8px;
    transition: .2s linear;
    }
*/

}


/* ANIMATIONS */

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

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

.box_main {
    opacity: 0;
    animation-name: anim_2;
    animation-delay: 2s;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

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

.boot-word {
    position: absolute;
    font-family: 'Heartless';
    z-index: 1000;

    height: 100vh;
    width: 100%;

    color: #fff;
    font-size: 100px;

    background: url('../../images/stars.jpg');
    background-position: center center;
    background-size: cover;


    display: flex;
    justify-content: center;
    align-items: center;
}

.boot-word {
    animation-name: anim_end;
    animation-delay: 2s;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

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

}
