* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  padding: 10px;
  background: #f5f5f5;
}

header {
  text-align: center;
  background: white;
}

nav {
  background-color: #bdbdbd;
  position: fixed;
  top: 0;
  width: 98.5%
}

nav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 15px 15px;
  text-decoration: none;
  font-family: Franklin Gothic;
  font-size: 16px;
}

nav a:hover {
  background-color: #00adff;
  color: white;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  display: block;
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 15px 15px;
  background-color: inherit;
  font-family: Franklin Gothic;
}

.dropdown:hover .dropbtn {
  background-color: #00adff;
  color: white;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #00adff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

section{   
  float: left;
  width: 1460px;
  background-color: #00adff;
  margin: 10px 0px 10px 0px;
}

.button {
  background-color: #00adff;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

aside {
  float: left;
  width: 25%;
  background-color: #EBEBEB;
  padding-left: 20px;
}

input[type=text], textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #00adff;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  background-color: #f5f5f5;
}

input[type=submit] {
  background-color: #bdbdbd;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #00adff;
}

.container {
  background-color: white;
  padding: 20px;
}
h1 {
	font-family: Franklin Gothic;
	font-size: 30px;
}

h2 {
	font-family: Franklin Gothic;
	font-size: 27px;
}

h3 {
	font-family: Franklin Gothic;
	font-size: 24px;
}

h4 {
	font-family: Franklin Gothic;
	font-size: 20px;
}

h5 {
	font-family: Franklin Gothic;
	font-size: 18px;
}

h6 {
	font-family: Franklin Gothic;
	font-size: 15px;
}

p {
	font-family: Arial;
	font-size: 15px;
}

article {
  background-color: white;
  padding: 20px;
  margin: 10px;
}

 .box {
        display: flex;
        align-items: center;
        justify-content: center
      }
	  
.square {
  height: 300px;
  width: 300px;
  flex-basis: 40%;
  background-color: #e1e1e1;
  margin-right: 20px;
}

  .text {
        font-size: 15px;
		padding-left: 20px;
		width: 1095px
      }

.artists {
  height: 300px;
  width: 300px;
  background-color: #e1e1e1;
}

.artist{
            display: flex;
		justify-content: flex-start;
          }
		  
	 .one {
        flex: 1;
      }

     .two {
        flex: 1;
      }

     .three {
        flex: 1;
      }
	  
	  .column {
  float: left;
  width: 25%;
  padding: 10px;
}

.column img {
  opacity: 0.8; 
  cursor: pointer; 
}

.column img:hover {
  opacity: 1;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

main {
  content: "";
  display: table;
  clear: both;
}



footer {
  padding: 10px;
  text-align: center;
  background: #bdbdbd;
  margin-top: 20px;
  color: white;
  width: 1460px;
}

 .footer{
            display: flex;
			flex-direction: row;
          }
		  
	 .one {
        flex: 1 1 auto;
      }

     .two {
        flex: 1 1 auto;
      }

     .three {
        flex: 1 1 auto;
      }

@media screen and (max-width: 960px) {
  section, aside {   
    width: 100%;
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  section, aside {   
    width: 100%;
    padding: 0;
  }
}

@media screen and (max-width: 540px) {
 nav a {
    float: none;
    width: 100%;
  }
}
