@font-face 
{
    font-family: "TrajanusBricks";
    src: url("fonts/TrajanusBricks.ttf") format("truetype");
}
*
{
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}
body
{
    background-color: #222222;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
main
{
    background-image: url(images/indexMain.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
}
main:before
{
    z-index: 1;
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #272727;
    opacity: 0.7;
    transition: .5s all;
}
h1, h2
{
    font-weight: normal;
    font-family: "TrajanusBricks", "Montserrat", sans-serif;
    word-spacing: 20px;
}
.logo
{
    height: 40vh;
    z-index: 2;
}
.txt
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    z-index: 2;
}
.button
{
    margin-bottom: 10vh;
    padding: 5px 0 5px 0;
    border: solid 1px #fff;
    background-color: inherit;
    transition: all .2s ease-in-out;
    z-index: 2;
}
.button a
{
    padding: 15px 30px 15px 30px;
    width: 100%;
    height: 100%;
    margin-top: 3px;
    border-radius: 2px;
    font-size: 20px;
    text-decoration: none;
    color: #fff;
    transition: all .2s ease-in-out;
}
.button:hover
{
    background-color: #fff;
}
.button a:hover
{
    color: #c4c4c4;
}
@media only screen and (max-width: 767px)
{
    main
    {
    background-position-x: center;
    }
    h1
    {
        font-size: 22px;
    }
}