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

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'VT323', monospace;
    color: #f1f1f1;
    background-color: #000000;
    font-size: 28px;
    overflow: hidden;
}
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('background.png') no-repeat center center;
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
}
.terminal-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70vh;
    z-index: 1;
    padding: 70px 20px 0;
    box-sizing: border-box; 
}
.terminal-text {
    font-size: 2em;
    text-align: center;
    line-height: 1.5;
    font-weight: 500;
    max-width: 100%;
    overflow: hidden;
    white-space: normal;
}
.footer-banner {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 0;
    z-index: 2;
    width: 100%;
    text-align: left;
    padding: 10px 0;
}
.contact-link {
    color: #f1f1f1;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-link:hover {
    color: #cccccc;
}