
.header {
    display: flex;
    position: fixed;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    background-color: white;
    box-shadow: 10px 10px 5px rgb(0 , 0 ,0 , 0.05);
    top: 0;
    right: 0;
    left: 0;
}



@font-face {
    font-family: "Cocon-Regular";
    src: url("../fonts/CoconNextArabic-Regular.ttf");
}


.logo {
    border-radius: 100%;
    height: 86%;
    margin: 10px 10px 50px 10px;

}

.reem-kufi-400 {
    font-family: "Cocon-Regular" , serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    flex: fit-content;
}

.title_style {
    font-family: "Cocon-Regular" , serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 25px;
    font-style: normal;
    display: inline-block;
    cursor: pointer;
    color: black;/*#546453;*/
    text-decoration: none;
    transition: text-decoration 1s;

}

.title_style:hover {
    text-decoration: underline;
}

.download_button {
    font-family: "Cocon-Regular" , serif;
    font-size: 18px;
    font-weight: 500;
    background-color: #82b976;
    color: white;
    margin: 30px;
    border-radius: 50px;
    border-style: solid;
    border-color: white;
    min-width: 120px;
    height: 50px;
    text-align: center;
    transition: opacity 0.2s, border-color 0.2s;
    cursor: pointer;
    padding: 10px;
    text-decoration: none;

}

.download_button:hover {
    opacity: 0.85;
    border-color: #dbe5db;
}

.download_button:active {
    opacity: 0.7;
    border-color: white;
}

