*{
  margin: 0;
  padding: 0;
  font-family: arial, helvetica, sans-serif;
  list-style: none; /* removes any default markers, bullets, etc. */
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body{
  background: #cccccc;
  display: block;
  justify-content: center; /* Horizontally center */
  background-image: url('images/cloud.png'); /* Replace with your image URL */
  background-repeat: no-repeat;
  background-attachment: fixed; /* Keeps the background fixed while scrolling */
  background-position: center top; /* Aligns the image to the top */
}
/* =====================================================================
*  ========================== MEDIA ====================================
*  =====================================================================
*  ========================== SCREEN ===================================
*  =====================================================================
*  =========================== 320 =====================================
* ==================================================================== */
.container{
  min-width: 320px;
  max-width: 599px;
}
/* HEADER Section Begins */
/* Position the <h1> on top of the navigation background */
header h1 {
  position: absolute;
  color: #FFF44F;
  font-size: calc(18px + 0.390625vw);
  font-weight: bold;
  line-height: 40px;
  margin: 0 10px;
  z-index: 1;
}
/* NAV Begins */
nav{
  background: #4169E1;
  height: 40px;
  width: 100%;
  border-radius: 10px 10px 0px 0px;
  position: relative;
}
nav ul{
  display: grid;
  grid-template-columns: repeat(2, 50%); /* Two equal columns */
  column-gap: 0px;
  position: absolute;
  width: 100%;
  height: auto;
  background: #4169E1;
  border-radius: 0px 0px 10px 10px;
  top: 40px;
  left: -100%;
  text-align: center;
  transition: all .5s;
}
/* Align left column items */
nav ul li:nth-child(odd) {
  text-align: left;
}
/* Align right column items */
nav ul li:nth-child(even) {
  text-align: right;
}
nav ul li{
  display: block;
  margin: 10px 0;
  text-align: left;
  line-height: 16px;
}
nav ul li a{
  color: #FFF44F;
  font-size: calc(13px + 0.390625vw);
  padding: 6px 8px;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
}
.makeActive{
  background: #CC6633;
}
.makeActive:hover{
  background: #be4c23;
  color: #cfbc1a;
  transition: .2s;
}
nav ul a:hover {
  background: #CC6633;
  transition: .2s;
}
/* Style hamburger */
.checkbtn{
  font-size: 20px;
  color: #FFF44F;
  float: right;
  line-height: 40px;
  margin-right: 10px;
  cursor: pointer;
  display: block;
}
#check{
  display: none;
}
/* Make nav visible by moving from -100px to 0px */
#check:checked ~ ul{
  left: 0;
}
/* NAV Section Ends */
#logoContainer{
  display: flex;  
  align-items: top; /* Vertically center the image */
  justify-content: center; /* Horizontally center the image */
  width: 100%;
  height: 150px;  
}
#logo{
  max-width: 120px;
  max-height: 120px;
  z-index: 0;
}
.headline-container {
  display: flex;
  align-items: center; /* Centers vertically */
  justify-content: center; /* Centers horizontally */
  height: 40px;
  width: 100%;
  margin: 2px;
}
#headline{
  display: flex;
  align-items: center; /* Vertically center the image */
  justify-content: center; /* Horizontally center the image */
  position: relative;
  font-weight: bold;
  font-size: calc(18px + 0.390625vw);
  color: #000;
}
#headline::before {
  content: ""; /* Create a pseudo-element to apply the background color */
  display: inline-block;
  background-color: #FFF44F; /* Set your desired background color */
  border-radius: 5px;
  height: 100%; /* Adjust the height as needed */
  width: 100%; /* Make the background span the entire width of the text */
  position: absolute; /* Position the pseudo-element relative to the text */
  width: calc(100% + 10px); /* Make the background slightly wider than the text */
  z-index: -1; /* Place the pseudo-element behind the text */
}
.main h1 {
  color: blue;
  font-size: calc(18px + 0.390625vw);
  font-weight: bold;
  line-height: 30px;
  text-align: center; /* Horizontally center */
  margin-top: 40px;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
}
footer{
  background: #4169E1;
  color: #FFF44F;
  font-size: calc(10px + 0.390625vw);
  font-weight: bold;
  height: 40px;
  width: 100%;
  line-height: 40px; /* Vertically center the text */
  text-align: center;
  border-radius: 10px 10px 0 0;
}
/* HEADER Section Ends */
/* =====================================================================
*  ========================== SHARED ===================================
*  =====================================================================
*  =========================== CSS =====================================
*  =====================================================================
*  ======================== MEDIA SCREEN ===============================
*  =====================================================================
*  ========================= 600 - 1200+ ===============================
* ==================================================================== */
@media screen and (min-width: 600px) {
  #logo{
    max-width: 180px;
    max-height: 180px;
  }}
/* =====================================================================
*  ========================== SHARED ===================================
*  =====================================================================
*  =========================== CSS =====================================
*  =====================================================================
*  ======================== MEDIA SCREEN ===============================
*  =====================================================================
*  ========================= 900 - 1200+ ===============================
* ==================================================================== */
@media screen and (min-width: 900px) {
  header h1 {
    font-size: calc(20px + 0.390625vw);
    line-height: 60px;
  }
  nav{
    height: 60px;
  }
  nav ul{
    top: 60px;
    left: 0;
  }
  /* Style hamburger */
  .checkbtn{
    display: none;
  }
  .main{
    background-image: linear-gradient(to left, #4169E1 20%, #9fb3e6 60%, #cccccc 80%);
    border-radius: 10px;
    border: 4px solid rgb(204, 102, 51);
    height: auto; 
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
  }
  footer{
    font-size: calc(12px + 0.390625vw);
  }
}
/* =====================================================================
*  ========================== MEDIA ====================================
*  =====================================================================
*  ========================== SCREEN ===================================
*  =====================================================================
*  =========================== 600 =====================================
*  =====================================================================
* ==================================================================== */
@media screen and (min-width: 600px) and (max-width: 899px) {
  .container{
    min-width: 600px;
    max-width: 899px;
  }
  nav ul li a{
    font-size: calc(14px + 0.390625vw);
  }
  /* Style hamburger */
  .checkbtn{
    font-size: 22px;
  } 
  .main h1 {
    font-size: calc(20px + 0.390625vw);
  }  
  footer{
    font-size: calc(12px + 0.390625vw);
  }
}
/* =====================================================================
*  ========================== MEDIA ====================================
*  =====================================================================
*  ========================== SCREEN ===================================
*  =====================================================================
*  =========================== 900 =====================================
*  =====================================================================
* ==================================================================== */
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .container{
    min-width: 900px;
    max-width: 1199px;
  }
  nav ul li a{
    font-size: calc(16px + 0.390625vw);
  }
  /* Add styles for the phrases */
  .phrases-row {
    font-size: calc(16px + 0.390625vw);
  }
  .inspiration {
    font-size: calc(16px + 0.390625vw);
  }
  .main h1 {
    font-size: calc(22px + 0.390625vw);
  }
}
/* =====================================================================
*  ========================== MEDIA ====================================
*  =====================================================================
*  ========================== SCREEN ===================================
*  =====================================================================
*  =========================== 1200 =====================================
*  =====================================================================
* ==================================================================== */
@media screen and (min-width: 1200px) {
  .container{
    min-width: 1200px;
    max-width: 1599px;
    margin: auto;
  }
  nav ul li a{
    font-size: calc(12px + 0.390625vw);
  }
  .main h1 {
    font-size: calc(20px + 0.390625vw);
    margin-bottom: 40px;
  }
}