* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden; /* Prevent any scrolling */
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff; /* Set background color */
}

/* Style for the logo */
.logo {
    width: 400px; /* You can adjust the width to your desired size */
    height: auto;
    cursor: grab;
    animation: flipAnimation 4s infinite;
}

@keyframes flipAnimation {
    0% {
        transform: rotate(0deg); /* Normal position */
    }
    50% {
        transform: rotate(180deg); /* Upside down */
    }
    100% {
        transform: rotate(360deg); /* Back to normal */
    }
}

@media (max-width: 767px) {
    .logo {
        align-items: center;
    }
}

@media (max-width: 280px) {
    .logo {
        width: 270px;
    }
}