body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-y: auto;
    background: linear-gradient(to bottom, #000000 21.76%, #1a1a1a 21.76%);
    min-height: 100vh;
    position: relative;
}

#matrix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 26.76%;
    z-index: -1;
}

header {
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 1vw;

}

#title {
    font-family: "Courier New", monospace;
    font-size: 1.5em;
    color: white;
    text-shadow: 
        2px 2px 0 #000, 
        -2px -2px 0 #000, 
        2px -2px 0 #000, 
        -2px 2px 0 #000, 
        4px 4px 5px rgba(0, 0, 0, 0.8);
    margin: 0;
    line-height: 0.8;
    margin-left: -9vw;

}

main {
    position: relative;
    z-index: 1;
}

#content {
    position: relative;
    margin: 20px auto;
    max-width: 90%;
    text-align: left;
    top: 0;
    left: 0;
    margin-top: 4.5cm; /* Μετακίνηση 2cm πιο κάτω */
    margin-left: 0.2cm;
}

#content pre {
    font-family: "Courier New", monospace;
    font-size: 1em;
    color: #00ff00;
    text-shadow: 
        1px 1px 0 #000, 
        -1px -1px 0 #000, 
        1px -1px 0 #000, 
        -1px 1px 0 #000;
    margin: 0;
    line-height: 1.5;
}

.x-link {
    color: #00ff00;
    text-decoration: underline;
    cursor: pointer;
}

.x-link:hover {
    color: #00cc00;
}

.image-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px auto;
    top: 0;
    left: 0;
    transform: none;
}

.custom-image {
    width: 8cm;
    height: 8cm;
    object-fit: cover;
    margin: 10px;
}

#roadmap {
    text-align: left;
    color: white;
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 3cm;
}

#roadmap h2 {
    font-size: 1.4em;
    margin-bottom: 30px;
}

#roadmap ul {
    list-style-type: disc;
    margin-left: 20px;
}

#roadmap ul li {
    font-size: 1.1em;
    margin-bottom: 5px;
}

#roadmap .disclaimer {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
}

.footer-content {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.footer-text {
    margin-bottom: 0.5cm;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 1.1em;
    font-weight: bold;
}

.social-images {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-img {
    width: 50px;
    height: auto;
    transition: transform 0.3s;
}

.social-img:hover {
    transform: scale(1.1);
}

.social-img:active {
    transform: scale(0.9);
}

