* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppings", sans-serif;
    scroll-behavior: smooth;
    /* color: #ffffff; */
}

body {
    min-height: 100vh;
    background: linear-gradient(#000000, hsl(0, 0%, 100%));
    color: #fff;
}

header
{
    background-color: #575757;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

header .logo
{
    color: #ffff;
    font-weight: 700;
    text-decoration: none;
    font-size: 2em;
    
    text-transform: uppercase;
    letter-spacing: 2px;
}

header ul{
    display: flex;
    justify-content: center;
    align-items: center;

}

header ul li{
    list-style: none;
    margin-left: 20px;
}

header ul li a{
    text-decoration: none;
    padding: 6px 15px;
    color: #ffff;
    border-radius: 20px;
}

header ul li a:hover, 
header ul li a.active 
{
    background-color: #fff;
    color: #2b1055;
}

.sec1 {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(3,1fr);
    text-align: center;
    justify-content: center;
    align-items: center;
}

.sec1 #black_bg{
    width: 100%;

    grid-column: 1 / 4;
    grid-row: 1 / 4;
}

.sec1 #profilePic{
    width: 100%;
    grid-column: 3 / 4;
    grid-row: 1 / 4;
    mix-blend-mode: darken;
}

.sec1 #sec1-1{
    margin-left: 0%;
    grid-column: 1/3;
    grid-row: 2;
}
.sec1 #sec1-1 h2{
    margin-top: -10%;
    margin-bottom:5%;
}


.sec1 p {
    grid-column: 1;
    grid-row: 2;
}

#text1 {
    font-size: 4em;
    padding-bottom: 10%;
}

#btn {
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 40px;
    background: #fff;
    color: #000000;
    font-size: 1.2em;
}

.aboutme {
    margin: 3%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.aboutme #heading{
    font-size: larger;
    align-self: center;
    margin-bottom: 5%;
}

.aboutme #content{
    display: flex;
    flex-direction: row;
    column-gap: 10%;
    padding-left: 10%;
    align-content: center;
}

.aboutme p{
    padding-top: 10%;
    padding-right: 10%;
}

.aboutme img{
    border-radius: 10%;
    width: 20%;
}

.projects{
    background-color: #000000;
    padding-top: 3%;
}

.projects h1{
    text-align: center;
    justify-content: center;
}

.projectcontainers{
    display: flex;
    flex-direction: row;
    margin-top: 5%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10%;
}

.projectcontainers>div{
    flex: 0 1 23%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2%;
    background-color: #575757;
    border-radius: 4%;
    margin-bottom: 5%;
}

.projectcontainers>div>img{
    width: 30%;
}

.projectcontainers>div>h2{
    text-align: center;
    margin-bottom: 3%;
}

.timeline {
    display: flex;
    flex-direction: column;
    margin: 2%;
}

.timeline>h1{
    text-align: center;
    flex: 1 0 100%;
    padding-top: 4%;
    padding-bottom: 4%;
}

.timeline>div{
    padding: 2%;
    background-color: #948bd3;
    border-radius: 20px;
    opacity: 0.5;
    transition: opacity 1s;
    margin-bottom: 4%;
    margin-right: 45%;
}

.timeline>div:hover{
    opacity: 1;
}
.timeline>div>img{
    width: 10%;
}

.footer{
    background-color: #d4d000;
    color: #000000;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10%;
    padding: 2%;
}
.footer>h1{
    flex: 1 0 100%;
    text-align: center;
    margin-bottom: 3%;
}

.footer #message{
    flex:0 1 33%;
}

.footer #quicklinks h2{
    margin-bottom: 10%;
}

.footer #quicklinks li{
    margin: 5%;
    list-style-type: none;
}

.footer #contactinfo li{
    margin-top: 5%;
    list-style-type: none;
}