a {
    color: #d25757;
}

.background {
    background: url("../../assets/throttle-trace/tt-background-no-text.png"), linear-gradient(180deg, red, #000000);
    background-size: cover;
}

.header-nav {
    width: 100%;
    top: 0;
    position: fixed;
    padding: 5px 20px;
    box-sizing:content-box;
    background: #d25757;
}

.header-nav > a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.header-nav > * img {
    height: 30px;
}

.nav {
    background-color: #d25757;
    border-bottom: 2px solid #d25757;
}

.desktop-trailer {
    display: none;
}

.mobile-trailer {
    display: inherit;
}

.social-buttons {
    justify-content: center;
    font-size: 30px;
    gap: 20px;
}

@media (min-width: 768px) {
    .desktop-trailer {
        display: inherit;
    }
    
    .mobile-trailer {
        display: none;
    }
}