body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('Website Background.svg') no-repeat center center;
    background-size: cover;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 24px;
    border-radius: 8px;
}

.logo {
    width: 200px;
    height: auto;
}

.slogan {
    font-size: 1.5em;
    margin: 0;
}

@media (min-width: 768px) {
    .logo {
        width: 200px;
    }

    .slogan {
        font-size: 2em;
    }
}

@media (min-width: 1024px) {
    .logo {
        width: 250px;
    }

    .slogan {
        font-size: 2.5em;
    }
}
