* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* TODO: Poppins Bold */
}

.tb-text-primary {
    color: #da4167;
}

.tb-text-secondary {
    color: #ffc700;
}

.tb-btn {
    display: inline-block;
    height: 30px;
    padding: 0 15px;
    border: none;
    line-height: 30px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.tb-btn-large {
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    padding: 0 40px;
}

.tb-btn-link {
    color: #ffffff;
}

.tb-btn-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.tb-btn-primary {
    background-color: #da4167;
    color: #ffffff;
}

.tb-btn-primary:hover {
    background-color: rgba(218, 65, 103, 0.9);
    color: #ffffff;
}

.tb-btn-secondary {
    background-color: #ffc700;
    color: #262829;
}

.tb-btn-secondary:hover {
    background-color: rgba(255, 199, 0, 0.9);
    color: #ffffff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    background-color: #343536;
    width: 100%;
    padding: 20px;
    box-shadow: inset 0 7px 9px -7px rgba(0, 0, 0, 0.4);
}

header #logo {
    width: 130px;
    margin-bottom: 0;
}

header #logo img {
    max-width: 100%;
    max-height: 100%;
}

header nav {
}

header #authentication {
}

header a {
    margin: 0 5px;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    background-color: #ffc700;
    width: 100%;
    padding: 20px;
    box-shadow: inset 0 7px 9px -7px rgba(0, 0, 0, 0.4);
    color: #262829;
    font-size: 12px;
}

footer #legal {
    display: flex;
    gap: 20px;
}

footer #legal a {
    color: #262829;
}

footer #legal a:hover {
    color: #ffffff;
}

@media (min-width: 768px) {
    .tb-btn {
        height: 50px;
        padding: 0 50px;
        line-height: 50px;
        font-size: 14px;
    }

    header #logo {
        width: 260px;
    }
}

@media (min-width: 1200px) {
    header {
        padding: 40px 100px;
    }

    footer {
        padding: 40px 100px;
        font-size: 16px;
    }
}