*{
    border: 0;
    margin: 0;
    padding: 0;
    font-family: "Poppins", serif;
}

html {
    scroll-behavior: smooth;
}

.row {
    display: flex;
}

.members-container {
    background: #000;
    justify-content: center;
}

.members {
    display: flex;
    width: 100%;
}

.member {
    width: 20%;
    height: 420px;
    background-position: center center;
    background-size: cover;
    opacity: 0.2;
    transition: 0.2s;
}

.member:hover {
    opacity: 1;
}

header {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: right;
    z-index: 999;
}

.menu li {
    display: inline-block
}

.menu li a {
    padding: 20px 14px;
    display: block;
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
}

.menu li a:hover{
    background: #ddd;
    color: #000;
}

.title{
    color: #fff;
    text-align: center;
    width: 100%;
    margin: 60px 0 35px;
    font-size: 42px;
    font-weight: 200;
}
.schedule-container {
    background-color: #000;
    padding-bottom: 160px;
    background-image: url('crowd3.jpeg');
    background-position: center bottom;
    background-size: cover;
    height: 900px;
}
.shows {
    color: #fff;
}
.shows li {
    list-style-type: none;
}
.contact-container{
    padding-bottom: 40px;
    padding-top: 60px;
    background-color: #6d5d44;
    background-image: url('potatoes4.jpg');
    background-size: cover;
    height: 600px;
    background-position: center top;
    color: #fff;
}
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}
.contact-form-container {
    margin: 20px;
}
.form-row {
    margin-bottom: 12px;
}
.contact-container label {
    display: block;
    font-size: 12px;
}
.contact-form-container input, .contact-form-container textarea {
    width: 100%;
    padding: 5px 10px 2px;
    box-sizing: border-box;
    border-radius: 2px;
    font-size: 16px;
    color: #555;
}
.contact-form-container textarea {
    height: 160px;
}

footer {
    border-top: 4px solid #483b29;
    background: #000;
    display: flex;
    padding: 14px 100px;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .schedule-container {
        height: 520px;
      }
}

@media screen and (max-width: 540px) {
    .members, .contact-container .row {
        flex-direction: column;
    }
    .member {
        width: 100%;
    }
    .contact-container {
        height: auto;
    }
    footer {
        padding: 14px 10px;
    }
}