@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');

body, html {
    background-color: #d61b44;
    font-family: 'Inter', sans-serif;
    height: 100%;
    margin: 0;
    image-rendering: pixelated;
}

.landing {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.scaled-svg {
    transform: scale(11); /* Adjust the scale value as needed */
    margin-bottom: 40px;
}

.text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    /* Adjust the max-width value to target different screen sizes */
    .scaled-svg {
        transform: scale(calc(100vw / 768)); /* Adjust the scale value as needed */
    }
}


