   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Ubuntu', sans-serif;
      height: 100vh;
      min-height: 600px;
      display: flex;
      flex-direction: column;
      color: #344A5E;
    }
    .central-content {
      display: flex;
      padding-top: 200px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .bottom-content {
      height: 116px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .caption {
      margin-top: 15px;
      text-align: center;
    }
    .big-text {
      font-weight: 500;
      font-size: 18px;
    }
    .small-text {
      font-size: 14px;
    }
    .ref {
      font-size: 14px;
      color: #0279C0;
      text-decoration: none;
    }
    .ref:hover {
      text-decoration: underline;
    }
    .pic {
      margin-bottom: 15px;
    }
 

.logo-sction {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-direction: column;
}

.logo-box img {
	max-width: 200px;
}

.logo-text {
	color: #ff7410;
	font-weight: 600;
	font-size: 40px;
}


.buttons-section {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 20px;
}

.buttons-section button {
	background: #ff7410;
	border: none;
	border-radius: 15px;
	outline: none;
	transition: 0.3s;
	border: 1px solid #ff7410;
}


.buttons-section button:hover {
	background: #fff;
	border: 1px solid #ff7410;
}

.buttons-section button:hover a {
	color: #ff7410;
}

.buttons-section a {
	display: block;
	padding: 10px 30px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 600;
	font-family: "Montserrat";
}

body {
	font-family: "Montserrat";
}

.bottom-content a {
	color: #344A5E;
	font-family: "Montserrat";
}


@media screen and (max-width: 767px) {
   .buttons-section {
   	flex-direction: column;
   }

   .logo-text {
   	font-size: 16px;
   }

   .logo-box img {
	max-width: 150px;
}

.central-content {
  padding-top: 100px;
}

}
