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

body {
    background-color: #f5f5dc;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Dancing Script', cursive;
}

.main-container {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.display-text {
    font-family: 'Dancing Script', cursive;
    font-size: 6rem;
    color: #4b5320;
    font-weight: 700;
    transition: all 0.3s ease;
    user-select: none;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    padding: 2rem;
}

.invisible {
    opacity: 0;
}

.social-icons {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5320;
    font-size: 24px;
    text-decoration: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(75, 83, 32, 0.2);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .display-text {
        font-size: 4.5rem;
    }
}

@media (max-width: 480px) {
    .display-text {
        font-size: 3rem;
    }
}