@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
:root {
    --primary-clr: hsl(86, 53%, 51%);
    --secondary-clr: hsl(218 66% 67%);
    --text-clr: hsl(0 0% 20%);
    --footer-clr: hsl(0 0% 45%);
}

html, body {
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    min-height: 100vh;
    width: 100%;
}
a {
    text-decoration: none;
}
a:hover {
    opacity: .8;
}
main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: 2.4rem;
}
.status-wrapper, .footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.status-wrapper {
    height: min(75vh, 100vh);
    margin-bottom: 2rem;
}
/* status illustration */
.status-img {
    width: 450px;
    height: auto;
    margin-bottom: -3rem;
}
/* status text */
.status-title {
    font-size: 3rem;
    color: var(--primary-clr);
}
.status-message {
    color: var(--text-clr);
    font-size: 1.6rem;
    max-width: 55ch;
    margin-bottom: 16px;
}
.status-domain {
    color: var(--secondary-clr);
    font-weight: 500;
    text-decoration: underline;
}
.status-btn {
    display: inline-block;
    background-color: var(--primary-clr);
    color: hsl(255 100% 100%);
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 150ms ease-in-out;
}
/* footer */
.ctvt-logo {
    width: 24px;
    height: auto;
}
.footer {
    font-size: 1.4rem;
    color: var(--footer-clr);
}
.footer-link {
    color: var(--footer-clr);
}