 /*
 Theme Name: Smooth Jazz Cafe
 Theme URI: https://the-smooth-one.com/
 Author: Michael Muranaka
 Author URI: http://muranaka.ink/
 Description: Custom Theme
 Version: 1.0
 License: GNU General Public License
 License URI: https://www.gnu.org/licenses/gpl.html
 Tags: smooth jazz cafe, cornell bethea, big corn
 */

html, body {
  scroll-behavior: smooth;
  font-family: sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  color: #fff;
  background: #000;
}

a {
  color: #fff;
  text-decoration: underline;
}

img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 400px;
  object-position: top center;
}

figure {
  margin: 0;
}

header {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 40px 60px;
  max-width: 1440px;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

nav ul a {
  display: block;
  margin: 0 0 0 30px;
}

#body-content {
  margin: 200px auto;
  max-width: 1120px;
  box-sizing: border-box;
  padding: 0 60px;
}

.content-block {
  display: flex;
  justify-content: space-between;
  margin: 0 0 60px;
  text-align: center;
}

.content-block div {
  width: 42%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.gallery-grid figure {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}