body {
    background: #141414;
    color: rgb(237, 235, 232);
    font-family: Helvetica, sans-serif, arial
}

/* these are for the landing page */
#landing .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100vh;
}

#landing header,
#landing main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    /* margin-top: 5rem; */
}

#landing header h1 {
    text-transform: capitalize;
    font-size: 55px;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #e60073, 0 0 20px #e60073, 0 0 25px #e60073, 0 0 30px #e60073, 0 0 35px #e60073;

}

#landing h2 {
    display: inline;
    text-align: center;


}

#namebox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}

#name {
    color: #141414;
    background-color: rgba(255, 132, 183, 0.755);
    box-shadow: 0 0 15px 5px rgba(255, 59, 128, 0.504);
    border-radius: 5rem;
    display: inline;
    padding: 0.2rem 0.5rem 0.2rem 0.5rem;
    margin-left: 0.7rem;

}

#terminal {
    /* background-color: rgb(255, 46, 46); */
    background-image: url('images/Z5qN1l.png');
    background-size: cover;
    padding: 5.5rem 0rem;
    height: 100%
}

#landing main p,
#terminalList li {
    color: lime;
    font-family: "Courier";
    font-size: 20px;
    margin: 10px 0 0 10px;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    opacity: 0;
    animation: type 2.5s steps(60, end) forwards;
    -webkit-user-select: none;
    user-select: none;
}

#landing main p:nth-of-type(2) {
    animation-delay: 4s;
}

#landing main p:nth-of-type(3) {
    animation-delay: 8s;
}

#landing main p:nth-of-type(4) {
    animation-delay: 12s;
}

#terminalList li:nth-of-type(1) {
    animation-delay: 15s;
}

#terminalList li:nth-of-type(2) {
    animation-delay: 16s;
}

#terminalList li:nth-of-type(3) {
    animation-delay: 17s;
}

#terminalList li:nth-of-type(4) {
    animation-delay: 18s;
}

#terminalList li:nth-of-type(5) {
    animation-delay: 19s;
}

#terminalList li:nth-of-type(6) {
    animation-delay: 20s;
}


@keyframes type {
    0% {
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}





/* all pages */
a {
    color: #ff83c1;
    text-decoration: none;
}

a:hover {
    color: rgb(159, 255, 255)
}

footer {
    text-align: center;
    color: #2b2b2b;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    direction: ltr;
    margin: 0;
    background-color: #261f353c;
    backdrop-filter: blur(2px);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0;


}

nav li {
    height: 50px;

}

#logo {
    font-size: 25px;
    font-weight: 600;
    text-decoration: overline;
}

nav a {
    height: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}


nav a:not(#logo):hover {
    background-color: rgba(24, 40, 61, 0.333);
    height: 100%;
    color: rgb(255, 131, 201);
    text-decoration: overline;


}

nav li:first-child {
    margin-right: auto;
}

h1 {
    color: rgb(255, 255, 255);
}

ul {
    padding-left: 0;
}

#terminalList li {
    list-style-position: inside;
    list-style-type: square;
}

li {
    list-style-position: inside;}

.colorful {
    background-image: radial-gradient(circle at 191% 121%, #2491e599 18%, transparent 60.05%), radial-gradient(circle at -148% 51%, #bb00ff4e 27%, transparent 76.05%);

}

.content:not(#landing .content) {
    margin: 5% auto 0 auto;
    /* max-width: 500px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

article {
    background-color: #0b040f4e;
    border-radius: 1rem;
    padding: 1rem;
    margin: 2rem;
    /* width: 100%;  */


}
#projectGrid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;

}
#cvGrid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 100%; /* Add this to fill the .content max-width */
}

#cForm{
    background-color: #120b1c7c;
    border-radius: 2rem;
    padding:2rem
}
section p {
    padding: 0;
    margin: 0;

}

h1:not(#landing h1){
    color:#d7b4ff;
}
h2:not(#landing h2) {
    color:#b4e4ff
}

form input, textarea{
    border-radius: 1rem;
    background-color: #0c0511;
    display: inline;
    border:none;
    padding:1rem;
    color:#e7c3ffbb;
    font-family: 'Courier New', Courier, monospace;
}

form label{
    display: block; 
    margin-bottom: 8px; 
}