@charset "utf-8";
:root {
    --color1: rgba(0,0,0,0.8);
}
body, html {
    padding: 0;
    margin: 0;
    height: 100%;
}
body * {
    box-sizing: border-box;
    font-family: "Open Sans", system-ui, Helvetica, Arial, sans-serif;
    line-height: 120%;
    color: var(--color1);
}

body {
    background: hsla(33, 97%, 76%, 1);
    background: linear-gradient(315deg, hsla(33, 97%, 76%, 1) 0%, hsla(21, 99%, 73%, 1) 27%, hsla(351, 56%, 62%, 1) 50%, hsla(299, 39%, 36%, 1) 76%, hsla(251, 64%, 25%, 1) 100%);
    background: -moz-linear-gradient(315deg, hsla(33, 97%, 76%, 1) 0%, hsla(21, 99%, 73%, 1) 27%, hsla(351, 56%, 62%, 1) 50%, hsla(299, 39%, 36%, 1) 76%, hsla(251, 64%, 25%, 1) 100%);
    background: -webkit-linear-gradient(315deg, hsla(33, 97%, 76%, 1) 0%, hsla(21, 99%, 73%, 1) 27%, hsla(351, 56%, 62%, 1) 50%, hsla(299, 39%, 36%, 1) 76%, hsla(251, 64%, 25%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#FDC785", endColorstr="#FEA678", GradientType=1 );
}
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
}
.content {
    display: block;
    text-align: center;
    letter-spacing: 0.05em;
    width: 100%;
}
.logo {
    display: block;
}
.logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 77px;
    margin: 0 auto;
}
.line {
    display: block;
    background-image: url(construction-line.png);
    background-repeat: repeat-x;
    background-position: 50% 50%;
    width: 100%;
    height: 36px;
    margin: 3.75em 0
}
.text {
    display: block;
    margin:0;
}
.text span {
    display: block;
    font-size: 1.875em;
    font-weight: 100;
}
.text strong {
    display: block;
    font-size: 3.125em;
    font-weight: 500;
}
.links {
    display: inline-block;
    margin: 2em 0;
}
.links a {
    display: block;
    font-size: 1.25em;
    font-weight: 600;
    color: var(--color1);
    text-decoration: none;
    position: relative;
    line-height: 150%; 
}
.links a::after {
    content: "";
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-bottom: 1px solid var(--color1);
    transform: scaleX(0);
    transition: all 500ms;
}
.links a:hover::after {
    transform: scaleX(1);
}

@media (max-width: 800px) {
    html {
        font-size: 10px;
    }
    .logo img {
        max-height: 50px;
    }
}
