:root{
  --izyGold: #D4A337;
  --izySoftBlue: #DAEAF6;
  --izyIvory: #F6F2E7;
  --izyRed: #BD0F0F;
  --izyBlue: #002FA7;
}

*, 
*::after, 
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
}

main {
  position: relative;
  width: 100%;
  height: 100vh;
  background: var(--izyIvory);
  display: flex;
  justify-content: center;
  align-items: center;
}

main::before {
  content: "";
  position: absolute;
  top: 0;
  left:0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: transparent url("./assets/logo_without_text.svg") no-repeat center;
  /* background: transparent url("./assets/logo.svg") no-repeat center; */
  background-size: clamp(150px, 45%, 750px);
  opacity: 0.1;
}

main h1 {
  color: var(--izyRed);
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: clamp(1.7rem, 4dvw, 4.5rem);
}