body, html {
    margin: 0px;
    padding: 0px;
    background-color: #D9D9D9;
    font-family: Helvetica;
}
header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 11vh 0px;
    margin-bottom: 3vh;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    padding-left: 20px;
    z-index: 1;
    background: #d9d9d9;
    position: relative;
}

header .container::after {
    content: '';
    position: absolute;
    width: 300px;
    left: -280px;
    height: 100%;
    background: #d9d9d9;
    z-index: -1;
    top: 0;
}

header .container img {
    width: 160px;
}

header .container .divisor {
    width: 1px;
    margin: 2px 10px;
    height: 78px;
    background: linear-gradient(transparent, #373535, transparent);
    margin-right: 0px;
}

header span {
    /* width: 0px; */
    text-wrap: nowrap;
    /* overflow: hidden; */
    animation: ingress 0.8s forwards;
    font-family: 'Typewriter';
    font-size: 28px;
    color: #373535;
}
section {
    padding: 2vw;
}

section h1 {
    font-family: Typewriter;
}

.roaster {
    display: flex;
}

.roaster .card {
    width: 300px;
    overflow: hidden;
    border-radius: 17px;
    background: #d9d9d9;
    box-shadow: inset 20px 20px 60px #b8b8b8, inset -20px -20px 60px #fafafa, 20px 20px 60px #b8b8b8, -20px -20px 60px #fafafa;
    transition: margin 0.1s, box-shadow 0.1s;
    margin-right: 1vw;
}
.roaster .card img {
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 18px;
    padding-bottom: 0px;
    transition: opacity 0.1s;
    opacity: 0.9;
}
.roaster .card:hover {
    box-shadow: inset 20px 20px 60px #b8b8b8, inset -20px -20px 60px #fafafa, 20px 20px 60px #9b9b9b, -20px -20px 60px #fafafa;
    margin-left: -2px;
    margin-top: -2px;
}
.roaster .card:hover img {
    opacity: 1;
}
.roaster .card a {
    text-decoration: none;
    color: #373535;
}

.roaster .card .body {
    padding: 10px;
}

.roaster .card .body h2 {
    margin: 0px;
    font-family: Helvetica;
    font-weight: 500;
}

.roaster .card .body p {
    margin: 0px;
    margin-top: 8px;
}

.mobiLogo {
    display: none;
}

@keyframes ingress {
    0% {
        margin-left: -360px;
    }
    100% {
        margin-left: 0px;
    }
}

@font-face {
    font-family: Typewriter;
    src: url('assets/fonts/XTypewriter-Bold.ttf');
    font-weight: bold;
}
@font-face {
    font-family: Typewriter;
    src: url('assets/fonts/XTypewriter-Regular.ttf');
    font-weight: normal;
}

@media (max-width: 550px) {
    .roaster{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    header {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    header .container {
        padding-left: 0px;
    }
    header span {
        font-size: 16px;
    }
    .dskLogo {
        display: none;
    }
    .mobiLogo {
        margin: 0 auto;
        margin-top: 5vh;
        width: 80%;
        display: block;
    }
}