body{
    background-color: #141414;
    font-family: 'Courier New', monospace;
    padding: 10px;
}
h1, a, p{
    color: #E0E2DB;
    text-decoration: none;
}
.section{
    /* height: 100dvh; */
    min-height: 100dvh;
}
.container{
    display: flex;
    justify-content: center;
    align-items: center; 
}
.link{
    position: absolute;
    right: 1rem;
}

.link:nth-child(3) {
    right: 4rem;
}
.resume-box{
    border: 2px solid #FF4B3E;
    padding: 10px;
    position: absolute;
    left: 5%;
}
.resume{
    text-decoration: none;
    color: #E0E2DB;
}

.about{
    /* color: #465C88; */
    color: #E0E2DB;
    text-align: center;
    margin: 0 auto;
    width: 75%;
}


.card-container {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 60%, 500px), 1fr));
    gap: 1.5rem;
    padding: 1rem;
    margin: 2rem;
}
.card {
    display: block; /* so the whole card is clickable */
    text-decoration: none;
    background: 
    radial-gradient(circle, rgba(0,0,0,0.3), transparent 70%),
    linear-gradient(to bottom, rgba(0,0,0,0.2), transparent 50%),
    #474747;
    color: #E0E2DB;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 2px solid #FF4B3E;
    padding: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.title{
    color: #E0E2DB;
    text-align: center;
    font-size: clamp(2rem, 8vw, 5rem);
}
.title-div{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    padding: 0 1rem;
}

.descriptors{
    color: #E0E2DB;
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 3rem;
}
.text{
    border: 2px solid #FF4B3E;
    border-radius: 20px;
    width: 80%;
    padding: 10px;
}

.filler-bar{
    /* background-color: #FF7A30; */
    background-color: #FF4B3E;
    height: 1px;
    width: 60%;
}

.filler-bar2{
    background-color: #FF4B3E;
    height: 1px;
    width: 60%;
}

.nav {
    position: fixed;
    top: 1%;
    border: 2px solid #FF4B3E;
    background: #111;
    padding: 10px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    z-index: 10;
}
.toggle-btn {
    background: #E0E2DB;
    color: black;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.nav-links{
    display: none;
    flex-direction: column;
    margin-top: 10px;
}
.nav.active .nav-links {
    display: flex;
}