@font-face {
    font-family: 'Inconsolata';
    src: url("../fonts/Inconsolata-Regular.ttf") format("truetype");
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body{
    background-color: #000;
    color:#ccc;
}
img{
    max-width: 100%;
    height: auto;
}
a{
    outline:none;
    text-decoration: none;
    color:inherit;
}
a:focus{
    outline: none;
}
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 3rem;
}
.logo{
    max-width: 800px;
    padding-bottom: 1rem;
}
.copyright{
    font-family: 'Inconsolata', monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    font-size: .875rem;
}
@media(max-width:768px){
    .copyright{
        letter-spacing: 1px;
        font-size: .75rem;
    }
}