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

body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);*/
    background-color: #D2D2D2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.logo-container {
    width: 100%;
    max-width: 600px;
    margin-top: -25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100%;
    height: auto;
    max-width: 550px;
    /*filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));*/
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
}

.slogan-container {
    position: relative;
}

h1 {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: -20%;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }

    .logo {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1rem;
    }

    .logo {
        max-width: 250px;
    }

    .content {
        gap: 20px;
    }
}