@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Montserrat+Alternates:wght@200&display=swap');

* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color:darkslategray;
}
h2 {
    font-family: 'Montserrat Alternates', sans-serif;
    color:darkslategray;
    font-size: 180%;
}
/* logo styles */
#logo a {
    font-family: 'Montserrat Alternates', sans-serif;
    color:darkslategray;
    text-decoration: none;
    float: left;
    font-size: 180%;
}

/* navigation links */

#menu li {
    list-style: none;
    display: inline;
    float: right;
    margin: 20px;
    font-size: 160%;
}
#menu a {
    text-decoration: none;
    color: lightseagreen;
}
#menu a:hover {
    text-decoration: underline;
}
.active {
    text-decoration: underline;
}
select {
    display: none;
}
/*header*/
#header-image {
    /* image taken from https://www.pexels.com/photo/assorted-bottles-on-brown-wooden-shelf-4362047/ */
    background: url('../images/header-brushes.jpg') no-repeat center center;
    width: 100%;
    height: 360px;
    overflow: hidden;
}
#header-image-courses {
    background: url('../images/courses-header.jpg') no-repeat center center;
    width: 100%;
    height: 360px;
    overflow: hidden;
}
#about-section{
    height: 360px;
}
/* welcome */
.welcome {
    width: 60%;
    margin: auto;
    text-align: center;
    padding: 20px;
    display: block;
}
/*circular image*/
.container {
    text-align: center;
}
#central-image {
        /* image taken from unsplash https://unsplash.com/photos/KR84RpMCb0w*/
    background: url('../images/studio-image.jpg') no-repeat center center;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    padding: 20px;
    margin: 20px;
    display: inline-block;
    }
#welcome-para {
    display: inline-block;
    width: 33%;
}
#welcome-para p {
    padding: 20px;
    margin: 2px;
}
#gallery-section {
    height: 360px;
    display:block;
}
/* video */
.video-home {
    display: block;
    height: 500px;
}
.video-box {
    display:flex;
    justify-content: center;
}
/* courses and gallery pages layouts*/
#course-head h2 {
    width: 60%;
    margin: auto;
    text-align: center;
    padding: 20px;
    display: block;    
}
#course-head {
    max-width: 1000px;
    margin: auto;
}
#course-head p{
    padding: 20px;
    margin-left: 25px;
}
.row {
    margin: 8px -16px;
}
.row,
.row > .column {
  padding: 8px;
}
.column {
    float: left;
    width: 33%;
    border: 3px solid lightgray;
}
.column ul {
    list-style: none;
    text-align: center;
}
.content {
    background-color: white;
    padding: 10px;
    padding-bottom: 100px;
}
.content img {
    height: 270px;
    width: 270px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.content div img {
    text-align: center;
}
h3 {
    font-style:italic;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.content p {
    height: 150px;
}
.content a {
    text-decoration: none;
}
.content a:hover {
    text-decoration: underline;
}
/* form on contact page*/
.form-container {
    background: lightgrey;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    height:300px;
    padding-left: 2%;
    padding-bottom: 100px;
    margin-bottom: 100px;
}
form input {
    width: 80%;
    display: block;
}
#comment {
    line-height: 70px;
}
#submit {
    text-align: center;
    color: darkolivegreen;
    background-color:whitesmoke;
    margin-top: 10px;
}
#submit:hover {
    font-family: 'Montserrat Alternates', sans-serif;
    color: whitesmoke;
    background-color: darkolivegreen;
}
form label {
    text-align: right;
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: bold;
    color: black;

}
#map {
    margin-top: 20px;
    position: relative; 
    left: 20%;
}
/*footer*/
footer {
    width: 100%;
    background-color: lightseagreen;
    position: fixed;
    bottom:0;
    left: 0;
    text-align: center;
    margin-top: 100px;
}
footer a {
    font-size: 220%;
    padding: 30px;
    color:lightgray;
}
/* Responsive layout for nav and video columns */
@media screen and (max-width: 1025px) {
    .column {
      width: 50%;
        }
    nav ul {
        clear: left;
        float: left;
        display: block;    
    }
    video {
        width: 500px;
    }
    iframe {
        width: 300px;
    }
  }
  
@media screen and (max-width: 425px) {
    .column {
      width: 100%;
        }     
     
    .column-right {
        width: 80%;
        margin: 0 auto;
    } 
    nav ul {
        clear: left;
        float: left;
        display: block;  
        font-size: 40%;  
    }
    video {
        width: 300px;
    }
    #welcome-para {
        display: inline-block;
        width: 65%;
    }    
  }
    
