*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    height: 100%;
}
@font-face {
    font-family: usman;
    src: url(Mabook.otf);
}
body{
    height: 100%;
}

header{
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
& .headings{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
& h1{
    font-family: usman, 'sans sarif';
    font-size: 150px;
}
& h2{
    font-style: italic;
    font-weight: bold;
    letter-spacing: 10px;
    margin-top: 10px;
}
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    margin: 20px 40px;
& a{
    text-decoration: none;
    color: #393E46;
    font-style: italic;
    font-size: 20px;
    margin-bottom: 10px;
}
}
& img{
    translate: 80rem;
}
}

.about {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
}


.about h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.about p {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: justify;
}


@media (max-width: 600px) {
    .about {
        padding: 20px 15px;
    }

    .about h3 {
        font-size: 2rem;
    }

    .about p {
        font-size: 1rem;
    }
}