@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Roboto:wght@400;700&display=swap");

:root {
    --bg-page: #f4efe6;
    --text: #1f242b;
    --heading: #1b3a4b;
    --link: #a01f2f;
    --radius: 12px;
}

html {
    height: 100%;
}

body {
    margin: 0;
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
    background-color: var(--bg-page);
    color: var(--text);
    line-height: 1.55;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

main.content {
    flex: 1;
}

h1, h2, h3 {
    font-family: "Lato", system-ui, -apple-system, sans-serif;
    color: var(--heading);
    margin-top: 0;
}

.page-header {
    background-color: #e7decc;
    height: 150px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 0 20px; */
}

.horizontal-bg {
    background-image: url('https://cdn.in-milan.net/assets/images/header-background.png');
    background-repeat: repeat-x;
    background-size: auto;
}

main.content {
    margin: 20px;
    padding: 20px;
}

.page-footer {
    background-color: #e7decc;
    color: #000;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.page-footer .footer-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.page-footer a {
    color: #4e2f1a;
    text-decoration: none;
}

.page-footer a:hover {
    text-decoration: underline;
}