/* css */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
}

body{
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    font-family: 'Figtree', sans-serif;
}

header{
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    height: 400px;
    width: 100%;
    background-image: url(images/background.jpg);
    background-position: center center;
    background-size: cover;
}

header h1{
    font-size: 26px;
    font-weight: bold;
    padding: 15px 25px;
    background-color: rgba(0,0,0, 0.2);
    color: #fff;
    margin-top: 100px;
}

section{
    margin-top: -140px;
    text-align: center;
    font-size: 26px;
    padding-bottom: 100px;
    width: 100%;
}

section img{
    height: 344px;
    width: auto;
}

section p{
    text-transform: uppercase;
    text-align: center;
    font-size: 30px;
    padding: 70px 0 40px 0;
    line-height: 38px;
    letter-spacing: 1px;
}

section .infos{
    padding-top: 70px;
}

section .infos a{
    color : #BE1622;
}

section .infos strong a{
    text-decoration: none;
}