
body { margin: 0; padding: 0; background-color: black; background-size: cover; overflow: auto; box-sizing: border-box; min-height: 100vh;
} 

.container { position: relative; width: 100%; height: 100vh; }

.top-bar {
    position: absolute;
    top: 25px;
    left: 300px;
    width: calc(100% - 600px);
    height: 90px;
    display: flex; 
    justify-content: center; 
    align-items: center;
    color: black;
    background-color: black;
    border-style: solid;
    border-color: Green;
    border-radius: 20px;
    font-size: 24px;
    box-sizing: border-box;
    text-align: center;
}

    
    .nav-box {
        position: absolute;
        top: 160px;
        left: 65px;
        width: 190px;
        height: 460px;
        background-color: black;
        padding: 20px;
        border-style: solid;
        border-color: Green;
        border-radius: 20px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }
    
    .nav-buttons {
        position: absolute;
        top: 160px;
        left: 80px;
        box-sizing: border-box;
    }

    .nav-buttons a {
        display: block;
        margin: 30px 0;
        width: 150px;
        height: 50px;
        background-color: black;
        text-align: center;
        line-height: 50px;
        text-decoration: none;
        color: green;
        border-style: solid;
        border-color: Green;
        border-radius: 20px;
        font-size: 16px;
        box-sizing: border-box;
    }

    .nav-buttons a:hover {
        background-color: Green;
    }
    
    .link-box {
        position: absolute;
        top: 25px;
        left: 65px;
        box-sizing: border-box;
    }
    
    .link-box a {
        display: block;
        width: 190px;
        height: 90px;
        text-align: center;
        line-height: 90px;
        text-decoration: none;
        color: Green;
        background-color: black;
        border-style: solid;
        border-color: green;
        border-radius: 20px;
        font-size: 12px;
        box-sizing: border-box;
    }
    
    .link-box a:hover {
        background-color: Green;
    }
    

    .text-box {
        position: absolute;
        top: 160px;
        left: 300px;
        width: calc(100% - 600px);
        height: 460px;
        background-color: black;
        padding: 20px;
        border-style: solid;
        border-color: Green;
        border-radius: 20px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }

    .image-box {
        position: absolute;
        right: 65px;
        border-style: solid;
        border-color: Green;
        border-radius: 20px;
        background-color: black;
        overflow: hidden;
        box-sizing: border-box;
    }

    .image-box img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        box-sizing: border-box;
    }

    .image-box1 {
        top: 160px;
        width: 190px;
        height: 190px;
        box-sizing: border-box;
    }


    .image-box2 {
        top: 420px;
        width: 190px;
        height: 190px;
        box-sizing: border-box;
    }

    .transparent-image {
        position: absolute;
        top: 25px;
        right: 75px;
        width: 190px;
        height: 90px;
        background-color: transparent;
        box-sizing: border-box;
    }

    .transparent-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        box-sizing: border-box;
    }

h1, h2, p, a, li { font-family: Monospace; color: Green; font-size: 12px;}


