/* important */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@700&family=Poppins:wght@900&display=swap');

h2 {
    font-family: 'Cairo', sans-serif;
}

*{
    margin: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}

/* fin de important */

/* haeder */

h1.logo {
    margin-left: 8.5vh;
    font-size: 4vh;
    font-family: 'Poppins', sans-serif;
}

.header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

a.link {
    margin: 10px;
    font-size: 20px;
    text-decoration: none;
    color: #f0ffff;
    margin-right: 50px;
}


h1.logo a {
    text-decoration: none;
    color: #f0ffff;
}

h1.logo a span {
    color: #3ED77F;
}

.header {
    font-family: 'Poppins', sans-serif;
    background-color: #ADADAD;
    position: sticky;
}

h1 {
    font-family: 'Cairo', sans-serif;
}

/* main page */

section.main-page {
    min-height: 90vh;
    background: linear-gradient(rgb(0,0,0,0.4), transparent), url('./images/bg.jpg');
    background-size: cover;
    background-position: bottom;
    color: #f0ffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.main-page h1{
    font-size: 8.9rem;
    margin-top: -370px;
    padding: 4rem;
}

button {
    padding: 2rem 6rem;
    background-color: #3ED77F;
    border: none;
    border-radius: 10em;
    cursor: pointer;
    margin-top: 100px;
    font-size: 1.8rem;
    font-family: 'Cairo', sans-serif;
}

section.main-page h2{
    font-size: 2.9rem;
}

/* fin de main page */

/* footer */

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    background: #111;
    height: auto;
    width: 100vw;
    font-family: 'Cairo', sans-serif;
    padding-top: 40px;
    color: #fff;
}

.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content h3{
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;

}

.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
}

ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}

ul li{
    margin: 0 10px;
}

ul a {
    color: #fff;
    transition: color .4s ease;
}

ul a:hover{
    color: royalblue;
}

ul a i {
    font-size: 1.1rem;
}

.footer-bottom{
    background: #000;
    width: 100vw;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}

.footer-bottom span {
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}

/* fin de footer */