@font-face {
    font-family: 'Italianno';
    src: url('../fonts/Italianno-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'IndieFlower';
    src: url('../fonts/IndieFlower-Regular.ttf') format('truetype');
}

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

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'IndieFlower', serif;
    color: #082239;
}

.container {
    text-align: center;
    transform: translateY(-5vh);
}

.greeting {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'IndieFlower', serif;
}

.logo {
    max-width: 300px;
    max-height: 300px;
    display: block;
    margin: 0 auto 20px;
}

.text {
    font-size: 12rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .text {
        font-size: 6rem;
    }
    .logo {
        max-width: 200px;
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .text {
        font-size: 3.5rem;
    }
    .logo {
        max-width: 120px;
        max-height: 120px;
        margin-bottom: 10px;
    }
}
