/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                Programmer: Aaron "A.J." Cassell. (@BrotatoBoi)
                        Program Name: Portfolio Website.
Description: My portfolio website that showcases all of my projects I made.
                    File: ./stylesheets/main_style.css
                             Date: 2025/04/19
                           Version: 2026.01.26

===============================================================================

                        Copyright (C) 2025 BrotatoBoi 
        This program is free software: you can redistribute it and/or modify
        it under the terms of the GNU General Public License as published
        by: The Free Software Foundation, either the version 3 of the
        License, or any later version.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/


body {
    background: black;
    color: lime;
    font-size: 1rem;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
}

nav button {
    flex: 1 1 100px;
    padding: 1vw 1.5vw;
    font-size: 1rem;
    color: black;
    background-color: lime;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

nav button::hover,
nav button.active {
    background-color: darkgreen;
}

@media (max-width: 480px) {
    nav button {
        flex: 1 1 80%;
        font-size: 0.9rem;
    }
}

footer {
    margin-top: 7vh;
    margin-bottom: -3vh;
    height: 2vh;
}

footer p {
    margin-top: -0.5vh;
}

bold {
    font-weight: bold;
    color: cyan;
}

#highlight-sep {
    color: darkgreen;
    width: 20vw;
    margin-top: -1.5vh;
    margin-bottom: -3vh;
}

#head-sep {
    color: darkgreen;
    width: 5vw;
    margin-top: -1.5vh;
    margin-bottom: 3vh;
}

a {
    color: pink;
}

a:hover {
    color: purple;
}

a:visited {
    color: rgb(255, 0, 212);
}

#main-div {
    flex: 2;
    text-align: center;
    width: 50vw;
    height: 58vh;
    margin-left: 10vw;
    margin-top: 3vh;
    border: 3px solid lime;
    color: red;    
}

#main-div p {
    /* margin-top: 10vh; */
    margin-left: 5vw;
    margin-right: 5vw;
}

#info-div {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    width: 25vw;
    display: block;
    margin-top: -58vh;
    margin-left: 63vw;
}

#info-div p {
    margin-top: 3vh;
    margin-left: 3vw;
    margin-right: 3vw;
    color: red;
}

#update-div {
    flex: 1;
    border: 3px solid lime;
    width: 25;
    height: 26vh;
    margin-bottom: 3vh;
    overflow-y: auto;
}

#highlight-div {
    flex: 1;
    border: 3px solid lime;
    width: 25;
    height: 26vh;
    overflow-y: auto;
}

/* ~ Make into less spaghetti. ~ */
#project-container {
    text-align: center;
    border: 3px solid lime;
    margin-left: 7vw;
    width: 85vw;
    height: 85vh;
    overflow-y: auto;
}

#project-container ul {
    margin: 0;
    padding-left: 1.2em;
    line-height: 1.4;
    list-style-position: inside;
}

#project-container ul li {
    margin-bottom: 0.2em;
}

#project-div {
    text-align: center;
    border: 2px solid lime;
    margin-left: 7vw;
    width: 85vw;
    height: 55vh;
    overflow-y: auto;
}

#project-div p {
    margin-top: 5vh;
}

#project {
    color: red;
    border: 2px solid lime;
    width: 25vw;
    margin-left: 17.3vw;
    margin-bottom: 3vh;
}

#panel {
    display: block;
    height: 75vh;
    margin-top: -3vh;
    overflow-y: auto;
    border: 0.1rem solid lime;
}

#project-image {
    max-width: 50%;
    margin-left: 25%;
    height: auto;
    display: block;
}

#center-div {
    color: red;
    border: 2px lime solid;
    width: 90vw;
    height: 75vh;
    margin-left: 5vw;
    overflow-y: auto;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.links {
    margin-bottom: 3vh;
}
