* {
    margin: 0;
    padding: 0;
    font-family: myFonts;
}

@font-face {
    font-family: myFonts;
    src: url(/font/ProximaNova-Regular.ttf);
}

/* nav bar */

header {
    position: fixed;
    color: rgb(255, 255, 255);
    background-color: #0A075F;
    background-position: center;
    width: 100%;
    z-index: 100;
    top: 0%;

}

nav {
    display: grid;
    gap: 300px;
}

ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 30px 60px;
}

a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.list-nav {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
}

.border button {
    border: 1px solid #ffffff;
    background: none;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
}

.logo img {
    width: 120px;
    height: 30px;
}


/* first section events */

.first {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(/images/color\ background.png), url(/images/blog\ image.webp);
    background-size: cover;
    height: 100vh;
    margin-top: -2px;
}

.first .text-of-image {
    color: rgb(255, 255, 255);
    font-size: 60px;
    margin-right: 40px;
}

/* section blog */

.card-blog {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px;
    gap: 40px;
    padding: 40px;
}

.card {
    width: 345px;
    height: 430px;
    border-radius: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.text-blog {
    margin: 10px;
}

.text-blog h4 {
    color: #242565;
}

.text-blog h6 {
    color: #A5A5A5;
}

.card img {
    width: 100%;
}

.title-blog {
    margin-top: 60px;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.title-blog h2 {
    color: #242565;
}

.title-blog h4 {
    color: #6A6A6A;
}

.button #btn-blog {
    border: 2px solid #ffffff;
}

/* section footer */

footer {
    margin-top: 80px;
    background-color: #0A075F;
    width: 100%;
    height: 100%;
}

.all-footer {
    padding: 40px;
    display: flex;
    justify-content: space-around;
    color: white;
}

.footers {
    width: 300px;
}

.footers h3{
    font-size: 23px;
}

.footers h5 , p{
    font-size: 12px;
}

.image-logo{
    width: 190px;
    height: 50px;
}

.email-searche {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    border: 1px solid #ffffff;
    background-color: #F2F4FF;
    border-radius: 30px;
    padding: 8px 2px;
}

.email-searche button {
    border: none;
    background-color: #F5167E;
    color: white;
    padding: 12px 10px;
    border-radius: 20px;
}

.email-searche input{
    border: none;
}

.copyright h5{
    text-align: center;
    color: white;
}