/* 
    box-sizing border-box 
*/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/*
    Tipografia 
*/

@font-face {
    font-family: 'Gotham';
    src: url("./fonts/GothamRounded-Light.otf") format("opentype");
}


/*
    Estilos
*/

body {
    background-color: #31262a;
    color: #e9e3da;
    font-size: 1.2em;
    line-height: 1.5;
    font-family: 'Gotham', sans-serif;
    font-weight: 300;
}

a {
    color: #e9e3da;
    text-decoration: none;
}

a:hover {
    color: #f18a48;
}

#conteudo {
    max-width: 640px;
    margin: 32px auto;
}

#logo {
    max-width: 320px;
    margin: 32px auto 12px;
}

#logo img {
    width: 100%;
}

#catalogos {
    max-width: 100%;
    margin: 0px auto 32px;
    text-align: center;
}

#info {
    max-width: 320px;
    margin: 0px auto 32px;
    text-align: center;
}

.redesocial {
    font-size: 2em;
    margin-right: 10px;
    color: #8bc9ad;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#rodape {
    margin: 32px auto;
    text-align: center;
}
