html, body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    position: relative;
    /* overflow: hidden; */
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.message {
    text-align: center;
    align-self: center;
    display: flex;
    /* padding: 50px 70px 15px 70px; */
    padding: 25px;
    border-radius: 25px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.min-max-width-500
{
    max-width: 500px;
    min-width: 500px;
}

.min-max-width-250
{
    max-width: 250px;
    min-width: 250px;
}

.list-horizontal {
    flex-direction: row;
    align-items: center;
}

.list-vertical {
    flex-direction: column;
    align-items: center;
}

.gap-15 {
    gap: 15px;
}

.message a {
    text-decoration: none;
    color: #47494E;
}

.message-title {
    font-size: 48px;
    font-weight: 100;
    margin-top: 15px;
    color: #47494E;
    margin-bottom: 0px;
}

p {
    -webkit-margin-after: 0px;
    -webkit-margin-before: 0px;
    font-size: 15px;
    color: #7F828B;
    line-height: 21px;
    margin-bottom: 4px;
}

body {
    background: url("../img/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

footer {
    position: absolute;
    bottom: 0px;
    right: 15px;
    height: 35px;
    color: #000;
    text-align: right;
}

.footer-text {
    color: gainsboro;
    opacity: 75%;
}

.zoom-up {
    transition: transform .2s;
}

.zoom-up:hover {
    transform: scale(1.1);
}

.message .footer {
    margin-top: 25px;
}

.round-borders {
    border-radius: 15px;
}