@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    text-decoration: none;
    scroll-behavior: smooth;
} 

body {
    background-color: #FDFBD4;
    color: black;
    font-family: Poppins;
    background-image: url(./Images/360_F_216906043_vFTFepJkhZajy0yo8pzcdU13pvu5dUyP.jpg);
    background-size:auto;
}

html {
    overflow-x: hidden;
}


header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

nav {
    width: 100%;
    padding: 3rem 5%;
    background-color: #F8E5BB;
    border-bottom: 10px solid black;
    opacity: 80%;
    backdrop-filter: blur(15px);
    margin-bottom: 2rem;
    border-radius: 0 0 100px 100px;

}

nav ul {
    display: flex;
    flex-direction: row;
    gap: 200px;
    justify-content: center;
    list-style: none;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 3rem;
}

#abt-me {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#abt-me h1 {
    font-size: 4rem;
    margin-top: 50px;
}

.abt-paragraph {
    text-align: center;
    max-width: 800px;
    border: 8px solid black;
    border-radius: 20px;
    font-size: 1.3rem;
    line-height:30px;
    padding: 15px;
}

#abt-me img {
    clip-path: circle();
    width:250px;
    height:250px;
    margin-top: 100px;
}

.text-2 {
    font-size: 3rem;
    display: inline;
    font-weight: 700;
}

.bold {
    display: inline;
    font-weight: bold;
}

.timeline-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 12% 2rem;
}

.timeline-row {
    display: grid;
    grid-template-columns: repeat(autofit, minmax(300px, 1fr));
}
.heading {
    font-size: 2rem;
    margin: 2rem 0;
    display:flex;
    align-items: center;
    gap: 1rem;
}

.heading i{
    font-size: 4rem;
}
.content-box{
    position: relative;
    display: flex;
    flex-direction: column;
    gap:0.5rem;
    padding: 2rem;
    margin: 0 2rem;
    background-color: #d9c98f69;
    border-radius: 20px; 
    backdrop-filter: blur(20);
    border: 3px solid black;
    transition: 0.35s ease;
    cursor: pointer;
}

.content-box .date {
    font-weight: bold;
    font-size: x-large;
    text-decoration: underline;
}

h3 {
    font-size: x-large;
    margin-bottom: 10px;
}

.timeline-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-left: 5px solid ;
}

.content-box:before{
    position: absolute;
    content:'';
    width: 25px;
    height:25px;
    background-color: rgb(51, 37, 7);
    border-radius: 50%;
    left: -50px
}

.content-box:hover {
    box-shadow: 0 0 25px black;
}

#socials {
    display: flex;
    margin-top: 100px;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    background-color: #F8E5BB;
    padding-bottom: 50px;
    border-radius: 100px 100px 0 0;
    border-top: 10px solid black;
    opacity: 80px;
}

#socialheader {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 25px;
}

#socials ul {
    display: flex;
    flex-direction: flow;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    list-style: none;
    gap: 20px;
}

#socials ul li a {
    color: black;
    font-size: 2rem;
}

#socials ul li a :hover {
    text-decoration: underline;
    transition: 0.5s ease;
    font-size: 2.1rem;
}


