* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Cabin", sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
    color: #111;
}

main {
    flex: 1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

    padding: clamp(32px, 6vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(24px, 4vw, 48px);
}

.logo {
    display: flex;
    justify-content: center;
}

.logo-logo {
    width: clamp(160px, 30vw, 320px);
    height: auto;
}

.text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
}

h1 {
    text-transform: uppercase;
    color: #00686F;
    font-size: clamp(64px, 9vw, 120px);
    line-height: 1.1;
}

address {
    font-style: normal;
    font-family: "Noto Sans", sans-serif;
    line-height: 1.6;
}

address a {
    color: inherit;
    text-decoration: none;
}

address a:hover {
    text-decoration: underline;
}

footer {
    background-color: #00686F;
    color: #fff;
    padding: clamp(16px, 3vw, 32px);
}

footer p {
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
}