*{
    margin: 0;
    padding: 0;
}
html, body{
    height: 100%;
    width: 100%;
    font-family: "poppins", sans-serif;
}
h1{
    font-size: 55px;
}
.hero{
    background-color: #1A2333;
    color: white;
    text-align: center;
    margin-bottom: 20px;   
    padding: 60px; 
}
.content{
    display: flex;
    flex-direction: column;
    margin: auto;
    gap: 20px;
    width: 80%;
}
      
.about{
    background-color: lightgray;
    text-align: center;
    padding: 51px;
    border-radius: 10px;
}
.about p{
    font-size: 23px;
}
h2{
    margin-bottom: 10px;
}
.education{
    background-color: lightblue;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
}

.education h2{
    font-size: 30px;
    margin-bottom: 20px;
}

.skills{
    background-color: rgb(241, 241, 124);
    border-radius: 10px;
    text-align: center;
    padding: 20px;
}
.skills h2{
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 20px;
}

.projects{
    background-color: rgb(206, 135, 247);
    border-radius: 10px;
    text-align: center;
    padding: 20px;
}
.projects h2{
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 20px;
}

.contact{
    background-color: rgb(137, 245, 151);
    border-radius: 10px;
    text-align: center;
    padding: 20px;
}
.contact h2{
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 20px;
}
.contact p,
.projects p,
.education p,
.skills p{
    background-color:white;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 23px;
    padding: 12px 24px;
}



