* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: url("./fons.jpeg") no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 30px 40px;
}

.logo {
    max-width: 300px;
    width: auto;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 50px rgba(255,255,255,1))
}

.message {
    font-size: 1rem;
    color: #fff;
    line-height: 1.4;
    padding-bottom: 30px;
    padding-top: 10px;
    text-shadow: 0px 0px 5px #000;
    max-width: 500px;

}
.message.titol{
    font-size: 1.5rem;
    font-weight: bold;
}
.message.titol a{
    text-decoration: none;
    color: #fff;
    transition: .2s all;
}
.message.titol a:hover{
    opacity: .8;
}