@font-face {
    font-family: 'Roboto Condensed';
    src: url('./src/fonts/RobotoCondensed-VariableFont_wght.ttf');
    font-style: normal;
    font-weight: 100 900;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./src/fonts/Montserrat-VariableFont_wght.ttf');
    font-style: normal;
    font-weight: 100 900;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.under-construction {
    background: url('./src/img/under_construction.jpg') no-repeat center center /cover;
}

.group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    height: 100dvh;
    width: 100vw;
    width: 100dvw;
    position: relative;
    padding: 10%;
    background-color: rgba(42,42,42,.8);
}

.logo {
    height: 32px;
    position: absolute;
    top: 2rem;
    left: 2rem;
}

h1 {
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    color: #fff;
    font-size: 2rem;
    text-shadow: 
        4px 15px 8px rgba(0,0,0,.25);
    ;
    text-align: center;
    line-height: 1em;
    font-weight: 700;
    letter-spacing: 1px;
}

h2 {
    position: absolute;
    bottom: 2rem;
    margin: 0;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2rem;
    text-shadow: 
        4px 15px 8px rgba(0,0,0,.25);
    ;
    text-align: center;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: black;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    background-color: #0076e4;
    padding: 16px 64px;
    box-shadow: 
        4px 15px 8px rgba(0,0,0,.25);
}

.description {
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    font-family: 'Montserrat';

}