body,html{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    font-family: sans-serif;
}
.Section_top{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-image: url(images/rotation1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    justify-content: center;
    animation: change 40s infinite ease-in-out;
}
.content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;

}
.content h1{
    color: #fff;
    font-size: 60px;
    letter-spacing: 15px;
}
.content h1 span{
    color: #111;
}
.content a{
    background: #85c1ee;
    padding: 10px 24px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 20px;
}
.content a:hover{
    background: #034e88;
    color: #fff;
}
@keyframes change{
    0%
    {
        background-image: url(images/rotation1.png);
    }
    10%
    {
        background-image: url(images/rotation2.png);
    }
    20%
    {
        background-image: url(images/rotation3.png);
    }
    30%
    {
        background-image: url(images/rotation4.png);
    }
    40%
    {
        background-image: url(images/rotation5.png);
    }
    50%
    {
        background-image: url(images/rotation6.png);
    }
    60%
    {
        background-image: url(images/rotation7.png);
    }
    70%
    {
        background-image: url(images/rotation8.png);
    }
    80%
    {
        background-image: url(images/rotation9.png);
    }
    90%
    {
        background-image: url(images/rotation10.png);
    }
    100%
    {
        background-image: url(images/rotation11.png);
    }
}