@font-face {
    font-family: Franklin-gothic-bold;
    src: url(./fonts/franklin-gothic/FranklinGothicURWBoo.ttf);
}

html {
    font-family: Franklin-gothic-bold;
    width: 100%;
    height: 100%;
    background-color: #f4f4f4;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
}

div.background {
    background-image: url(./images/back.png);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    background-size: cover;
    filter: blur(7px);
    background-blend-mode: multiply;
    background-position: center;
    background-repeat: no-repeat;
}

div.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

div.container div.message {
    max-width: 600px;
    border: 2px dotted #d50475;
    padding: 2em;
    background-color: white;
    box-shadow: 5px 5px 5px lightgray;
}

div.container div.message img.logo {
    width: 80%;
    margin: 0 10%;
}

div.container div.message div.text {
    font-size: 1.5em;
    text-align: center;
}

ul {
    max-width: 250px;
    margin: auto;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding: 10px 40px;
}

ul li {
    list-style: none;
    display: flex;
    justify-content: center;
}

ul li img {
    width: 20px;
    margin-right: 1em;
}

ul li a {
    color: inherit;
    text-decoration: none;
    color: #d50475;

}

