@import url('https://fonts.googleapis.com/css2?family=Amita:wght@400;700&display=swap');

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f0f0f0;
    padding: 16px;
    box-sizing: border-box;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.logo p {
    margin: 24px;
    font-size: 48px;
    font-family: 'Amita', cursive;
    color: #333;
}

h1 {
    font-family: "dank mono", monospace;
    font-size: 36px;
    color: #666;
    text-align: center;
}

@media (max-width: 600px) {
    .main-container {
        height: auto;
        min-height: 100vh;
        padding: 8px;
    }

    .logo p {
        font-size: 32px;
        margin: 16px;
    }

    h1 {
        font-size: 24px;
    }
}
