*{
    margin: 0;
    padding: 0;
}

body{
    background-color: rgb(4, 45, 45);
    color: white;
    font-family: "Poppins", sans-serif;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgb(2, 65, 65);
    height: 120px;
}
nav ul{
    display: flex;
    justify-content: center;
}
nav ul li{
    list-style-type: none;
    margin: 0 23px;
}

nav ul li a{
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
}

nav ul li a:hover{
    color: rgb(14, 196, 216);
    font-weight: bold;
}

.left{
    font-size: 1.5rem;
}

.firstSection{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 70px 20px;
}

.firstSection>div{
    width: 38%;
}

.leftSection{
    font-size: 3rem;
    flex: 1;
    padding-left: 10%;
}

.rightSection{
    flex: 0.8;
}

.rightSection img{
    width: 80%;
}

.purple{
    color: rgb(145, 64, 222);
    font-weight: 600;
}

#element{
    color: rgb(145, 64, 222);
}

.secondSection{
    width: 70vw;
    margin: 20vh auto;
}

.secondSection h1{
    font-size: 2rem;
    width: 100%;
    margin: auto;
    text-align: center;
}
.secondSection p{
    font-size: 1.2rem;
    margin-top: 15px;
    text-align: justify;
}

.projects{
    margin: 3% 5%;
}

.project{
    margin-top: 1%;
}

.projectDescription{
    text-align: justify;
}

.projects button{
        background-color: #0f4121;
        padding: 7px 15px;
        text-align: center;
        font-size: 16px;
        border: 2px solid #a1b4ad;
        border-radius: 7px;
}

.projects button a{
    text-decoration: none;
    color: white;
}

.projects button:hover{
    background-color: #0c341b;
}

.report-btn{
    margin-left: 10px;
}

.github button{
    background-color: #0f4121;
    padding: 7px 15px;
    text-align: center;
    font-size: 16px;
    border: 2px solid #ffffff;
    border-radius: 5px;
}

.github a{
    color: white;
    text-decoration: none;
}

.github button:hover{
    background-color: #0c341b;
}

.glow {
    font-weight: bold;
    font-size: 1.25rem;
    text-decoration: underline;
}

/* Media Queries */
@media (max-width: 1200px) {
    .leftSection {
        font-size: 2.5rem;
    }
    
    .rightSection img {
        width: 90%;
    }
    
    .secondSection p {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    nav {
        flex-direction: column;
        height: auto;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .firstSection > div {
        width: 45%;
    }
    
    .secondSection p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .left {
        font-size: 1.2rem;
    }
    
    .firstSection {
        flex-direction: column;
    }
    
    .firstSection > div {
        width: 80%;
    }
    
    .leftSection {
        font-size: 2rem;
    }
    
    .secondSection {
        width: 85%;
    }
    
    .secondSection p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    nav ul {
        width: 100%;
        justify-content: space-around;
    }
    
    .left {
        font-size: 1rem;
    }
    
    .firstSection > div {
        width: 90%;
    }
    
    .leftSection {
        font-size: 1.5rem;
    }
    
    .secondSection {
        width: 95%;
    }
    
    .secondSection p {
        font-size: 0.9rem;
    }
}

