*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

p{
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
}
h1{
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 60px;
  font-style: normal;
}

:root {
  --bgcolor: hsl(27deg 63% 94.6%);
}

.intro{
  padding: 0px 100px;
  height: 100vh;
  background-color: var(--bgcolor);
  border-top: 20px solid rgb(255, 255, 255);
  border-left: 20px solid white;
  border-right: 20px solid white;
  padding-bottom: 100px;
}

header{
  display: flex;
  padding-top: 10px;
  justify-content: space-between;
  margin-bottom: 100px;
}

header p{
  font-family: "Mulish", sans-serif;
  font-weight: 900;
  font-size: 20px;
}

header .buttons{
  display: flex;
  gap: 20px;
}

header button{
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 18px;
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
  z-index: 0;
}

header button::after{
  content: "";
  position: absolute;           
  width: 100%;
  height: 13px;   
  bottom: 0px;
  left: 0px;           
  background: #FFE872;
  z-index: -1;     
}



.intro-container{
  display: flex;
  flex-direction: column; 
  gap: 20px; 
  max-width: 736px;
}

.intro-container p{
  max-width: 500px;
  margin-bottom: 30px;
}

.cta-button{
  width: 210px;
  font-family:"Nunito Sans", sans-serif;
  padding-top: 20px;
  padding-bottom: 20px;
  color: white;
   position: relative;
   cursor: pointer;
  font-weight: bold;
  background-color: black;
  border: none;
   z-index: 0; 
}


.cta-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #000;
  transform: translate(6px, 6px);
  z-index: -1;
}

