/* normalizing rules */

* { 
    box-sizing: border-box;
}

body, html {
    min-height: 100vh;
    margin: 0;
}

img {
    max-width: 100%;
}

/* end normalizing rules */

/* header rules */

header {
    background-image:
      linear-gradient(
        to top right,
        #8805f5 50%,
        #000000 50%
      );
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    width: 60%;
    min-width: 375px;
    margin: auto;
}

/* end header rules */

/* nav rules */

.primary-nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: 5;
    display: block
}

.primary-nav ul li a{
    text-decoration: none;
}

/* end nav rules */

/* grid rules */

.grid-parent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
}

.grid-parent2 {
    display: grid;
    grid-template-columns: 2fr 2fr;
    grid-column-gap: 10px;
    
}

.grid-parent3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    
}

/* end grid rules */

/* body rules */

.wrapper {
    max-width: 1500px;
    min-width: 370px;
    margin: auto;
    padding: 15px;
}

.wrapper2 {
    max-width: 1000px;
    min-width: 375px;
    margin: auto;
    padding: 15px;
    
}

.wrapper3 {
    max-width: 700px;
    min-width: 375px;
    margin: auto;
    padding: 15px;

}

body {
    text-align: center;
    min-width: 375px;
    background-image: url("/images/backgroundgrid.jpg");
    background-color: #000000;
    
}

.portrait {
    min-width: 15%;
    max-width: 100%;
    min-height: 15%;
    max-height: 100%;
}

img {
  opacity: 1.0;
}

img:hover {
  filter: grayscale(80%)
}

/* end body rules */

/* text rules */

.bodytxt {
font-family: 'Mitr', sans-serif;
color: #e5f00c;
font-size: 18px;
background: black;

}

.abouttxt {
font-family: 'Mitr', sans-serif;
color: #e5f00c;
font-size: 18px;
background: black;
width: 500px;
height: 260px;
margin: auto;
padding-left: 30px;
padding-right: 30px;

}

.artisttxt {
font-family: 'Mitr', sans-serif;
color: #e5f00c;
font-size: 18px;
background: black;
width: 65%;
margin: auto;
padding-left: 30px;
padding-right: 30px;

}

h1 {
    font-family: 'Russo One', sans-serif;
    color: #e5f00c;
    font-size: 60px;
}

h2 {
    font-family: 'Russo One', sans-serif;
    color: #e5f00c;
    font-size: 40px;
}

a:link {
    color: white;
}

a:visited {
    color: #8805f5;
}

a:hover {
    color: dimgray;
}

a:active {
    color: #8805f5;
}

/* end text rules */

/* button rules */

a.button {
    background-color: #e5f00c;
    color: black;
    font-family: 'Alata', sans-serif;
    text-align: center;
    display: inline-block;
    font-size: 20px;
    line-height: 25px;
    text-decoration: none;
    border-radius: 25px;
    width: 300px;
    
}

a.button:hover {
    background-color: #8805f5;
    color: white;
    text-decoration: underline;
}

a.button:active {
    background-color: white;
    color: black;
}

a.button2 {
    background-color: #e5f00c;
    color: black;
    font-family: 'Alata', sans-serif;
    text-align: center;
    display: inline-block;
    font-size: 30px;
    line-height: 25px;
    text-decoration: none;
    border-radius: 25px;
    width: 475px;
    height: 50px;
    padding-right: 20px;
    padding-top: 10px;
    
}

a.button2:hover {
    background-color: #8805f5;
    color: white;
    text-decoration: underline;
}

a.button2:active {
    background-color: white;
    color: black;
}
    
    

/* end button rules */


    
/* footer rules */

footer {
    background: black;
    font-family: 'Alata', sans-serif;
    font-size: 12px;
    width: 100%;
    color: white;
    text-align: right;
    width: 100%;
    padding: 15px 15px;
    position: fixed; 
    bottom: 0;
    left: 0;
    right: 0;

}
    
/* end footer rules */

/* media queries */

@media screen and (max-width: 630px) {  
    .grid-parent {
        grid-template-columns: 1fr;
        grid-column-gap: 0px;
    }
    
    .col-25, .col-75, input[type=submit] {
        width: 100%;
        margin-top: 0;
  }
    
    .row {
        flex-direction: column-reverse;
        
  }
    .col-25 {
        margin-bottom: 20px;
  }
    
}