/*
Theme Name: Blank Theme
Theme URI: https://wordpress.org/
Author: Blank Theme
Author URI: https://wordpress.org/
Description: As Basic as it gets
Version: 0.1
Text Domain: blanktheme

*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Open+Sans:wght@400;600&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    padding: 0;
    margin:0;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size:25px;
  padding:5px;
  color: var( --e-global-color-primary );
}

h3 {
  font-family: 'Playfair Display', serif;
  font-size:20px;
  padding:5px;
  color: var( --e-global-color-primary );
}

.two-columns {
  display: flex;
  gap: 20px; /* spacing between the columns */
  flex-wrap: wrap;
}

.two-columns .column {
  flex: 1; /* Each field takes up equal width */
  
}

@media (max-width: 600px) {
  .two-columns {
    flex-direction: column;
  }

 
}


p {
    font-family: 'Lato', sans-serif;
    font-size:18px;
    line-height: 1.6;
    font-weight:300;
    margin-bottom: 1em;
}

.hero-content {
  margin-top:-150px;
}