*{
    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;
}
}
.welcome{
    background-image: linear-gradient(rgba(255,255,255,0.7), rgba(000,000,000, 0.7));
    background-repeat: no-repeat;
    background-size: cover;
    height: 700px;

& h1{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Lora", serif; 
    font-size: 10rem; 
    font-weight: 750; 
    color: black; 
    text-align: center; 
    padding: 60px 20px; 
    letter-spacing: 0.05em; 
    animation: fadeIn 2s ease-in-out; 
}
& a{
    margin-top: 0;
    margin-left: 41rem;
    background-color: black;
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
}
