body {
    margin: 0;
    font-family: 'Roboto';
}
 
.c-header {
    background-color: #000000;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    & a {
        text-decoration: none;
    }
}
 
.c-header-logo {
    margin-top: 17px;
    margin-bottom: 22px;
    width: 85%;
}

 
.c-header-socialsContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}
 
.c-header-socials {
    color: #ffffff;
    margin: 0 10px;
    transition: 0.3s;
    &:hover {
        color: #921A1C;
    }
}
 
.c-hero {
    display: flex;
    flex-direction: column;
    margin-bottom: 66px;
}
 
.c-hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Jura", sans-serif;
}

.c-hero-content-image {
    width: 100%;
}
 
.c-hero-image {
    width: 100%;
}

.c-form{
    display: flex;
    flex-direction: column;
    width: 70%;
    font-family: "Jura", sans-serif;
}

.c-form-input {
    margin-bottom: 15px;
    padding: 20px 0 20px 0;
    font-size: 16px;
    width: 100%;
    font-family: "Jura", sans-serif;
}

.c-form-submit {
    background-color: #921A1C;
    border-color: #921A1C;
    box-shadow: none;
    padding: 15px;
    color: white;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition-duration: 0.4s;
    &:hover {

        background-color: black;
        border-color: black;

    }
}

.c-gigs {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-family: "Jura", sans-serif;
}

.c-gigs-header {
    background-color: #921A1C;
}

.c-gigs-text {
    font-size: 21px;
    text-align: center;
    margin: 20px;
}

.c-gigs-container {
    background-color: #000000;
}

.c-gigs-containerTitle {
    text-align: center;
    font-weight: 100;
    font-size: 18px;
    margin: 35px 0;
}

.c-gigs-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
}

.c-gigs-content-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.c-date {
    margin: 7px 0;
    font-size: 14px;
}

.c-venue {
    margin: 7px 0;
    font-size: 18px;
}

.c-location {
    margin: 7px 0;
    font-size: 18px;
}

.c-link {
    margin: 7px 0;
    font-size: 14px;
    color: white;
}
 
.c-merch-container {
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}
 
.c-merch-item {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(50% - 20px);
    color: #000000;
    justify-content: flex-end;
}
 
.c-merch-itemImage {
    width: 60%;
}
 
.c-merch-itemTitle {
    font-size: 16px;
    text-align: center;
}
 
.c-merch-itemLink {
    color: #000000;
    margin-bottom: 20px;
    transition: 0.3s;
    &:hover {
        color: #921A1C;
    }
}

.c-logout {
    color: white;
    margin-bottom: 15px;
}

footer {
    background-color: #000000;
    text-align: center;
    color: white;
    padding: 10px 0;
}

footer {
    & a {
        color: white;
    }
}

.c-table {
    display: flex;
    justify-content: center;
    margin: 35px 0;
}

.c-id {
    display: none;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    font-size: 12px;
}

td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}

tr:nth-child(even) {
background-color: #dddddd;
}

.c-add-form {
    margin: 35px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.c-add-form-label {
    font-size: 14px;
    color: black;
    margin-bottom: 5px;
    font-weight: bold;
    text-align: left;
}

.c-add-form-input {
    font-size: 14px;
    padding: 7px 0;
    color: black;
    width: 80%;
    margin-bottom: 15px;
}

.c-add-form-button {
    width: 50%;
    background-color: #921A1C;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.c-merchTableImage {
    width: 100%;
}

.c-privacy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 45px;
    text-align: center;
}

@media(min-width: 512px) {
    .c-header-logo {
        width: auto;
        height: 150px;
    }
}

@media(min-width: 670px) {
    table {
        width: 80%;
    }
    .c-merchTableImage {
        width: 50%;
    }
    .c-header-logo {
        width: auto;
        height: 150px;
    }
}

@media(min-width: 1107px) {
    .c-hero {
        flex-direction: row;
        margin-top: 30px;
        padding: 0 50px;
    }

    .c-hero-content-image {
        width: 65%;
    }

    .c-hero-content {
        width: 35%;
        margin-left: 50px;
    }

    .c-gigs-content-item {
        flex-direction: row;
        justify-content: center;
    }
    .c-date {
        margin: 0 12px;
        width: 180px;
    }

    .c-venue {
        margin: 0 12px;
        width: 180px;
    }

    .c-location {
        margin: 0 12px;
        width: 180px;
    }

    .c-link {
        margin: 0 12px;
        width: 180px;
    }

    .c-merch-container {
        flex-direction: row;
    }
    .c-merch-item {
        width: calc(33% - 20px);
    }

    table {
        width: 75%;
        font-size: 16px;
    }

    .c-add-form-input {
        width: 50%;
    }

    .c-merchTableImage {
        width: 20%;
    }
}
