:root {
    --color-verde: 134, 185, 65;
    --color-marrone: 118, 67, 32;
    --vh: 100%;
}
body {
margin: 0;
padding: 0;
background-color: #fff;
font-family: Arial, sans-serif;
display: flex;
height: calc(var(--vh, 100vh));
overflow-x: hidden;
justify-content: center;
align-items: center;
text-align: center;
color: #333333;
}

.container {
max-width: 100%;
height: auto;
background-image: url('../images/texture.jpg');
background-size: contain;
background-position: center;
}

.message {
font-size: 1.85rem;
color: rgb(var(--color-marrone));
font-weight: 500;
padding: 0 20;
}

.link {
text-decoration: underline;
color: unset;
}

.title {
font-weight: 700;
font-size: 1.85rem;
color: rgb(var(--color-marrone));
}

/* Tablet */
@media (max-width: 768px) {
.message {
    font-size: 1.50rem;
}
.title {
    font-size: 1.50rem;
}
}

/* Smartphone */
@media (max-width: 480px) {
.message {
    font-size: 1.50rem;
}
.title {
    font-size: 1.50rem;
}
}

.description {
padding: 5rem 0;
}

.header {
    display: block;
    max-width: 100%;
    height: auto;
}

.social-icon {
    font-size:48px;
    color:rgb(var(--color-marrone))
}