/*Обнуление*/
* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    line-height: 1;
    font-size: 14px;
    font-family: Arial;
    font-style: normal;
    font-weight: 500;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
}

/*--------------------*/
.main{
    max-width: 1024px;
    height: 100vh;
    margin: 0 auto;
    padding: 0 0 5% 0;

}

.logo{
    position:relative;
    padding-top: 54.6%;
    background: url(../img/logo_portable.jpg) 0 0/100% auto no-repeat;
}
.main-player{
    position: absolute;
    top: 19%;
    left: 41.5%;
    width: 20%;
    height: 37%;
}
.player{
    width: 100%;
    height: 100%;
}
#ivaplay, #ivastop{
    background: url('../img/player_portable.png') 0 0/100% 100% no-repeat;
}

/* создание анимации «moving» */
@keyframes moving {
    100% {transform: rotate(360deg);}
}

#ivastop{
    /* задать анимацию «moving» к текущему элементу */
    animation: moving 10s infinite linear;

    /* указать точку координат, вокруг которой будет вращаться объект */
    transform-origin: 50% 50%;
}

.main-player:hover, .video-play:hover{
    top: 18.5%;
    left: 41.2%;
    width: 20.5%;
    height: 38%;
}



.element {
    /* задать анимацию «moving» к текущему элементу */
    animation: moving 3s infinite linear;

    /* указать точку координат, вокруг которой будет вращаться объект */
    transform-origin: -80px -80px;
}