body {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

}

.logo {
    width: 50vw;
    height: auto;
    text-align: center;

}

.logo img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .logo {
        width: 75vw;
        height: auto;
        text-align: center;
    }

    .logo h1 {
        font-size: 1.5rem;
    }
}