
body {
    background-color: black;
    color: #00FF00;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
}


a {
    color: #00FF00;
    text-decoration: none;
}
nav ul {
    display: flex;
    list-style: none;
    padding: 20px;
    justify-content: center;
    background-color: #000;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #00FF00;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

.landing {
    text-align: center;
    margin-top: 100px;
}

.landing h1 {
    font-size: 3em;
    animation: blink-cursor 1s step-end infinite;
}

#about, #portfolio, #contact {
    padding: 50px;
    text-align: center;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}


.video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

.thumbnails img {
    width: 120px; 
    height: 80px; 
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.thumbnails img:hover {
    transform: scale(1.1); 
    border-color: #00AA00;
}

.video-item p {
    margin-top: 0.5em;
    color: #00FF00;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
}

#typewrite {
    font-size: 3em;
    white-space: nowrap;
    overflow: hidden;
    border-right: 0.5em solid #00FF00;
    padding-right: 0.2em;
    display: inline-block;
    width: auto;
    vertical-align: bottom;
    animation: blink-cursor 0.75s step-end infinite;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 1em; 
}

.contact-container div {
    display: flex;
    align-items: center;
    gap: 1em; 
}

.contact-container h3 {
    margin: 0;
    font-weight: normal;
    color: #00FF00;
}

.contact-container a {
    color: #00FF00;
    text-decoration: none; 
}

.contact-container a:hover {
    text-decoration: underline; 
}

h3:hover {
    text-decoration: underline;
    cursor: pointer;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal video {
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    display: block;
}

.modal img {
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    display: block;
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #00FF00;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #f00;
    text-decoration: none;
    cursor: pointer;
}


@keyframes blink-cursor {
    0% { border-right-color: rgba(0, 255, 0, 0.75); }
    50% { border-right-color: transparent; }
    100% { border-right-color: rgba(0, 255, 0, 0.75); }
}