nav{
    display:flex;
    background-color:rgba(255, 255, 255, 0.6);
    justify-content: space-evenly;

}
.bad-script-regular {
    font-family: "Bad Script", cursive;
    font-weight: 400;
    font-style: normal;
}
.mr-dafoe-regular {
    font-family: "Mr Dafoe", cursive;
    font-weight: 400;
    font-style: normal;
}
a{
    color: #5539cc;
    text-decoration: none;
    font-size: 20pt;
    margin-top: auto;
    margin-bottom: auto;
}
a:link {
    text-decoration: none;
    color: #5539cc;
}
a:visited {
    text-decoration: none;
    color: #5539cc;
}
a:hover {
    text-decoration: none;
    color: #5539cc;
}
a:active {
    text-decoration: none;
    color: #5539cc;
}
body{
    background-color: black;
}
.navicon{
    padding: 5px;
    border-radius: 10px;
    width: 80px;
}
.navlink{
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    padding: 12px;
}
.montserrat-alternates-regular {
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 400;
    font-style: normal;
}  
#aboutdo{
    display: flex;
    color: white;
    justify-content: space-evenly;
    font-size: 50pt;
}
h1{
    color: white;
    text-align: center;
    font-size: 90pt;
    margin-top: 15px;
    margin-bottom: 30px;
}
#bio{
    color: white;
    text-align: center;
    font-size: 25pt;
    margin-left: 15%;
    margin-right: 15%;
    margin-bottom: 70px;
}
footer{
    color: darkgray;
    text-align: center;
    margin-top: 60px;
}
#aboutimgs{
    display: grid;
    grid-template-areas: 
    'imgone imgtwo imgthree'
    'imgfour imgfive imgsix';
    margin-top: 150px;
}
.aboutimg{
    width: 400px;
    height: 400px;
    object-fit: cover;
    object-position: 25% 25%;
    margin: 5px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
}
.imgone{
    grid-area: imgone;
    margin-left: auto;
    margin-right: auto;
}
.imgtwo{
    grid-area: imgtwo;
    margin-left: auto;
    margin-right: auto;
}
.imgthree{
    grid-area: imgthree;
    margin-left: auto;
    margin-right: auto;
}
.imgfour{
    grid-area: imgfour;
    margin-left: auto;
    margin-right: auto;
}
.imgfive{
    grid-area: imgfive;
    margin-left: auto;
    margin-right: auto;
}
.imgsix{
    grid-area: imgsix;
    margin-left: auto;
    margin-right: auto;
}
.aboutflyers{
    display: flex;
    flex-flow: wrap;
    margin-top: 50px;
    justify-content: center;
}
.aboutflyer{
    width: 30%;
    margin: 5px;
    border-radius: 5px;
}
.wealwayshavefun{
    margin-top: 100px;
    margin-bottom: 50px;
}
#wahf{
    text-align: center;
}
.setlist{
    background-color: #5539cc;
}
div.setlist:hover {
    cursor: pointer;
}
h2{
  font-size: 35pt; 
  padding-right: 25px;
}
#setlistflex{
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    color: white;
}
#setlistflex > *{
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    margin: 10px;
    width: 40%;
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
li{
    font-size: 20px;
}
.bandmain{
    display: flex;
    color: white;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;

}
.bandmain > * {
    margin: 10px;
    font-size: 40pt;
    flex-basis: 40%;
}
.bandimg{
    width: 450px;
    height: 450px;
    border-radius: 10px;
    font-size: 18pt;
    background-repeat: no-repeat;
    background-size: 450px 450px;
    color: rgba(255, 255, 255, 0);
    text-align: center;
    transition: color 1s,
    background-image 1s;
}
.bandimg:hover{
    color: rgb(255, 255, 255);
    background-image: url(../images/blurple.png) !important;
    width: 450px;
    height: 450px;
    border-radius: 10px;
    font-size: 18pt;
    background-repeat: no-repeat;
    background-size: 450px 450px;
    text-align: center;
}
@media screen and (max-width: 410px) {
    .navicon{
        display: none;
    }
    .navlink{
        padding: 3px;
        margin: 5px;
    }
    a{
        font-size: 13pt;
        margin-top: auto;
        margin-bottom: auto;
    }
    h1{
        font-size: 50pt;
    }
    #bio{
        font-size: 20pt;
        margin-left: 10%;
        margin-right: 10%;
    }
    #aboutdo{
        font-size: 20pt;
    }
    #aboutimgs{
        display: grid;
        grid-template-areas: 
        'imgone'
        'imgtwo'
        'imgthree'
        'imgfour' 
        'imgfive' 
        'imgsix';
        margin-top: 50px;
    }
    .aboutflyer{
        width: 95%;
    }
    #setlistflex > * {
        width: 80%;
    }
    li {
        font-size: 15px;
    }
    .bandimg{
        width: 350px;
        height: 350px;
        font-size: 14pt;
    }
    .bandimg:hover{
        width: 350px;
        height: 350px;
        font-size: 14pt;
    }
}
