@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: 400px;
}

@media screen and (max-width: 500px) {
    .logo {
        width: 100%;
    }

    .card {
        width: 60%;
    }

    body {
        font-size: 15px;
    }
}

.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: 0 0 30px 30px;

}

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

.adresse {
    margin-bottom: 10px;
}

.icon {
    height: 15px;
    width: 25px;
}