* { margin: 0px; }
* { padding: 0px; }

.download{                                                                                      /* контейнер для ссылок для сканичивания html/css-кода */
    position: fixed;   
    bottom: 0;
    right: 0;
    margin-right: 10em;
    margin-bottom: 10em;
}
.download a{                                                                                   /* форматирование ссылок для сканичивания html/css-кода */
    color: blue;
    text-decoration: underline;
}

.wrapper{
    height: 185px;
    background-image: linear-gradient(gray, black );
}

.wrapper_2{
    color: white;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 3.5px;
    width: 1250px;
    text-align: right;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 0 15px 0;
}

.wrapper_2 a{                                                                                   /* кнопка старт */
    display: block;
    width: 300px;
    float: right;
    margin-top: 30px;
    margin-left: 20px;
    padding: 15px 0 15px 0;
    background-color: orange;
    border: 1px solid black;
    text-align: center;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    transition: transform 0.5s, background-color 1s ease-in 0.5s;                               /* для background-color сокращённая запись: выполнение анимации 1с и задержка 0.5с  */
}

.wrapper_2 a:hover{
    transform: scale(1.3);
    background-color: red;
}

.wrapper_2 a:active{
    color: black
}

/************************* солнце *************************/
.sun{
    float: right;
    position: absolute;
    right: 5%;
    display: none;
}

#img_sun:target{
    display: block;
    animation: sun_animation;
    animation-duration: 2.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes sun_animation{
    from {
        transform: rotate(0) scale(1);
        right: 5%
      }
    
      50% {
        transform: rotate(-720deg) scale(0.5);
        right: 65%;
      }
    
      to {
        transform: rotate(0) scale(1.15);
        right: 65%;
      }
}