@font-face {
    font-family: "Source sans pro";
    src: local("fonts/SourceSansPro-Regular.ttf");
}

* {
    margin: 0;
}

body {
    background-color: #eaebec;
    font-family: "Source sans pro", sans-serif;
    height: 90vh;
    width: 100%;
}

header {
    position: absolute;
    display: flex;
    flex: 1 1;
    width: 100%;
    height: 70px;
    background-color: #2a4596;
}

.logo {
    width: 80%;
    margin-bottom: 50px;
}

.w-50 {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 50%;
    min-width: 300px;
    max-width: 400px;
}

.h-50 {
    height: 50vh;
    max-height: 400px;
}

.mt-3 {
    margin-top: 1rem;
}

.d-flex {
    display: flex;
    flex-direction: row;
}

.col-2 {
    justify-content: space-between;
}

.card {
    align-items: center;
}

.center {
    display: flex;
    flex-direction: column;
    flex: 0 1 auto;
    justify-content: center;
    align-items: center;

}

.ms-auto {
    display: flex;
    margin-left: auto;
}

a {
    text-decoration: none;
    color: black;
}

header a {
    padding: 10px;
    color: white;
}

hr {
    color: #2a4596;
    position: relative;
    top: 70px
}

header a:hover {
    background-color: white;
    color: black;
    border-radius: 10px;
}


.ms-auto a {
    margin: 15px 20px;
}

.main {
    position: relative;
    top: 70px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.card {
    border: solid 1px black;
    border-radius: 20px;
    padding: 30px;

}

p {
    display: flex;
    flex-wrap: wrap;
    word-break: break-word;
    margin-bottom: 10px;
}

.adresse {
    margin-bottom: 10px;
}

.icon {
    height: 15px;
    width: 25px;
}@media screen and (max-width: 800px) {
    .logo {
        width: 80%;
    }

    .d-flex {
        flex-direction: column;
    }

    .card {
        width: 60%;
    }

    body {
        font-size: 15px;
    }

    .h-50 {
        height: 350px;
    }

    .w-50 {
        display: flex;
        flex-direction: column;
        text-align: center;
        width: 300px;
    }
}