body {
    background-color: #fffcf7;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22rem;
    font-family: "Lucida Console", "Courier New", monospace;
    color: #18272F;
    font-size: larger;
}

.title {
    font-weight: bold;
}

p {
    padding: 0;
    margin: 0;
}

a {
    overflow: hidden;
    position: relative;
    display: inline-block;
    margin-left: 30px;
    margin-right: 20px;
    color: #18272F;
    text-decoration: none;
    vertical-align: top;
}

a::before,
a::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
}

a::before {
    background-color: #54b3d6;
    height: 2px;
    bottom: 0;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

a::after {
    content: attr(data-replace);
    height: 100%;
    top: 0;
    transform-origin: 100% 50%;
    transform: translate3d(200%, 0, 0);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
    color: #54b3d6;
}

a:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

a:hover::after {
    transform: translate3d(0, 0, 0);
}

a span {
    display: inline-block;
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

a:hover span {
    transform: translate3d(-200%, 0, 0);
}

#tsparticles {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contact-info {
        top: 15px;
        left: 15px;
        font-size: 0.7rem;
    }
}

/* Contact Info Styles */
.contact-info {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 2;
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 0.75rem;
    color: #18272F;
    text-align: left;
    line-height: 1.4;
}

.contact-info p {
    margin: 0 0 0.2rem 0;
}

.contact-info a {
    color: #18272F;
    text-decoration: none;
    margin: 0;
    padding: 0;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #54b3d6;
} 