* {
padding: 0;
margin: 0;
box-sizing: border-box; 
}
html {
    scroll-behavior: smooth;
}
body{
    background: #28384a;
}
header {
    background-color: rgb(255, 226, 244);
    width: 100%;
    top: 0%;
    right: 0;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    z-index: 100;
    box-shadow: 4px 4px 30px rgb(24, 24, 24);

}
.aisha{
    margin-top: 10px;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
}
header a {
    text-decoration: none;
    color: #3D4E5C;
}
header a:hover {
    color: #2287DB;
    transition: 0.5s ease;
}
nav ul{
    list-style-type: none;
    padding: 5px;
}
nav ul li {
    display: inline-block;
    margin-right: 10px;
}
.Headtitle{
    font-size: xx-large;
    margin-top: 200px;
    text-align: center;
    justify-content: center;
    color: white;
    font-family: l;
}
a{
    color: white;
    text-decoration: none;
}
a:hover{
    color: #ff52ce;
    transition: 0.5s ease;
}
hr{
    margin-top: 2px;

}