@font-face {
    font-family: Gilroy;
    src: url("fonts/Gilroy-Regular.woff");
    font-weight: normal;
}
@font-face {
    font-family: Gilroy;
    src: url("fonts/Gilroy-Medium.woff");
    font-weight: bold;
}
@font-face {
    font-family: Gilroy;
    src: url("fonts/Gilroy-Light.woff");
    font-weight: 100;
}

html {
    scroll-behavior: smooth;
}

body {
    height: 100%;
    width: 100%;

    font-family: Gilroy, sans-serif;

    background-color: #fcfcfc;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    height: 100%;
    width: 100%;
    max-width: 177vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.data {
    display: flex;
    flex-direction: column;
    font-weight: normal;

    padding: 30px 20px;
    margin: 0;

    justify-content: center;
    align-items: center;
}

.main-date {
    /*grid-column: 1 / span 3;*/
    height: 100vh;
    width: 100vw;

    transform: translateY(-5%);
}

.main-date > div {
    display: flex;
    flex-direction: row;

    justify-content: center;

    margin: 30px 0;
}

.main-date > div > h1 {
    font-weight: bold;
    font-size: 8rem;
    margin: 0;

    white-space: nowrap;


    padding: 0 1rem;

    color: #03855b;
}

.main-date > div > h1:nth-child(2) {
    font-weight: 100;
    font-size: 8rem;
    margin: 0;


    padding: 0 1rem;

    color: #03855b;
}

.pbutton {
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.15em;

    display: inline-block;
    padding: 15px 20px;
    position: relative;
}
.pbutton:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #000;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}
.pbutton:hover {
    cursor: pointer;
}
.pbutton:hover:after {
    width: 100%;
    left: 0;
}

.data > p {
    font-weight: normal;
}

.data > h3 {
    font-weight: 100;
    font-size: 4rem;

    margin: 30px 0;
}

.copyright-container {
    position: absolute;
    bottom: 5px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.copyright {
    color: #808080;
    font-size: 0.7rem;

    text-align: center;

    letter-spacing: 0.3rem;
}