﻿@font-face {
    font-family: 'RobotoSlab';
    src: url('fonts/RobotoSlab/RobotoSlab-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
body {
    background-image: url('images/noise-bg.png');
}

a:link, a:visited {
    color: #fff;
    text-decoration: underline;
}
a:hover, a:active {
    color: red;
}

.container {
    height: 100%;
    min-height: 100vh;
    background-image: url('images/fade-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center center;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 15px;
    text-align: center;
}
.container > * {
    padding: 0 25px;
}
.patch {
    width: 200px;
}
h1 {
    font-family: 'RobotoSlab', Roboto, sans-serif;
    font-size: 33px;
    font-weight: 900;
    color: red;
    margin: 0;
}
h2 {
    color: #fff;
    font-family: 'RobotoSlab', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}
h3 {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 15px;
}
p {
    font-family: Arial, sans-serif;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    font-size: 18px;
    margin: 30px 0 0;
}
.socials {
    margin-top: 30px;
}
.socials img {
    width: 32px;
}
.contact {
    font-family: Arial, sans-serif;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    font-size: 14px;
    margin: 30px 0 0;
}
.contact > div {
    margin-bottom: 10px;
}

@media only screen and (min-width: 992px) {
    .container {
        width: 100%;
        height: auto;
        min-height: 100vh;
    }
    h1 {
        font-size: 64px;
        color: transparent;
        background-image: linear-gradient(#f00, #a20000);
        -webkit-background-clip: text;
        background-clip: text;
    }
    h2 {
        font-size: 18px;
    }
    h3 {
        font-size: 16px;
    }
    p {
        font-size: 22px;
    }
}