@import url('https://fonts.googleapis.com/css2?family=Lateef:wght@200&family=Reem+Kufi+Fun:wght@400..700&family=Tangerine:wght@700&display=swap');


.reem-kufi-fun-<uniquifier> {
  font-family: "Reem Kufi Fun", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0px;
    background-color: #00293B;
    position: sticky;
    top: 0;
    padding-right: 10%;
}

.nav__links {
    list-style: none;
}

.nav__links li{
    display: inline-block;
    padding: 0px 5px;
}

.nav__links li a {
    transition: all 0.3s ease 0s;
    color: white
}

.nav__links li a:hover {
    color: #F52A01;
}

button {
    padding: 9px 25px;
    background-color: #F52A01;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0;
    margin-left: 25px;
}

button:hover {
    background-color: #B71F01;
    color: white;
}

.nav__links li,a,button{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}