.spin{
    animation-name: spinning;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

}
.center {
    margin: auto;
    display: block;
}
.takePage{
    margin-top: 5%;
    width: 30%;
    height: 30%;
    overflow: visible;
    object-fit: contain;
}
@keyframes spinning {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.bigText {
    margin-top: 10%;
    text-align: center;
    width: 100%;
    font-size: 900%;
}