body{
    background-color: #000000;
    text-align: center;
    color: #d3d3d3;
    font-family: Helvetica, sans-serif;
    font-weight: 400;
    max-width: 100%;
    overflow-x: hidden;
}

h1{
    font-weight: 400;
}

h2{
    font-weight: 300;
}


a{
    color: rgb(255, 179, 0);
    transition: ease-in-out 0.5s;
    background-color: #7700ff;
    padding: 10px;
    border-radius: 10px;
    font-size: 36px;
}

a:hover{
    color: #7700ff;
    background-color: #ff00fb;
}


.content{
    margin-top:50px;
}

.rotate-corner{
    width: 400px;
    animation: rotate 5s linear infinite;
    padding-bottom: 0px;
    top: 40px;
    right: 7%;
    position: fixed;
    z-index: 3;
}

@keyframes rotate-corner {
    from {
        transform: rotate(360deg); /* Start at 0 degrees */
    }
    to {
        transform: rotate(0deg); /* End at 360 degrees */
    }
}

.rotate{
    width: 100%;
    max-width: 400px;
    animation: rotate 10s linear infinite;
    padding-bottom: 0px;
    display: block;
    z-index: 3;
    margin: 0 auto;
}

@keyframes rotate{
    from {
        transform: rotate(0deg); /* Start at 0 degrees */
    }
    to {
        transform: rotate(360deg); /* End at 360 degrees */
    }
}


footer{
    font-size: 26px;
    position: fixed;
    bottom: 20px;
    color: #d3d3d3;
    font-weight: 300;
}