
html{
    font-size: 62.5%; /* (16px * 0.625 = 10px) */
}

.container-large{
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5rem;
    padding-right: 5rem;
}

body{
    color: #111;
    background-color: #F5DEB3;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #3c5c1b;
}

.f-box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}

.logotype{
    width: 450px;
	position: relative;
	z-index: 10;
}


.hole{
	position: absolute;
	z-index: -1;
	top: calc(50% - 40px);
	left: calc(50% - 40px);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	opacity: 0.3;
	box-shadow:
		inset 0 0 70px #F5DEB3,
		inset 20px 0 100px #3c5c1b,
		inset -20px 0 100px #3c5c1b,
		inset 20px 0 350px #3c5c1b,
		inset -20px 0 350px #3c5c1b,
		0 0 70px #F5DEB3,
		-10px 0 100px #F5DEB3,
		10px 0 100px #F5DEB3;
	animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    box-shadow:
      inset 0 0 50px #F5DEB3,
      inset 20px 0 80px #3c5c1b,
      inset -20px 0 80px #3c5c1b,
      inset 20px 0 300px #3c5c1b,
      inset -20px 0 300px #3c5c1b,
      0 0 50px #F5DEB3,
      -10px 0 80px #3c5c1b,
      10px 0 80px #3c5c1b;
  }
  50% {
    box-shadow:
      inset 0 0 70px #F5DEB3,
      inset 25px 0 110px #537f26,
      inset -25px 0 110px #537f26,
      inset 25px 0 400px #537f26,
      inset -25px 0 400px #537f26,
      0 0 70px #F5DEB3,
      -15px 0 110px #537f26,
      15px 0 110px #537f26;
  }
  100% {
    box-shadow:
		inset 0 0 70px #F5DEB3,
		inset 20px 0 100px #3c5c1b,
		inset -20px 0 100px #3c5c1b,
		inset 20px 0 350px #3c5c1b,
		inset -20px 0 350px #3c5c1b,
		0 0 70px #F5DEB3,
		-10px 0 100px #F5DEB3,
		10px 0 100px #F5DEB3;
  }
}



h1{
	font-weight: 400;
    text-align: center;
    margin-top: 180px;
    margin-bottom: 20px;
    font-size: 5em;
}

p{
	font-weight: 300;
    text-align: center;
    line-height: 1.5em;
    font-size: 3em;   
}