:root {
  --primary-color: #1b861e;
  --secondary-color: #FFFFFF;
  --tertiary-color: #d7ecf1;
  font-family: Arial, Helvetica, sans-serif, -apple-system, -moz-fixed;
  background-image: url(assets/stock-bg.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--tertiary-color);
  background-position: center;
  overflow: hidden;
}

body {
  padding: 0;
  margin: 0;
  border: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: 'Kumbh Sans', sans-serif;
}

.container {
  margin: 0px;
  padding: 0px;
  border: 0px;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.content {
  flex-direction: column;
  position: relative;
  width: 25vw;
  height: 50vh;
  margin: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.image {
  width: 20vh;
  height: 20vh;
  border-radius: 100%;
  margin: 50px;
}

.logo {
  position: relative;
  width: 25vh;
  height: 25vh;
  justify-content: center;
  align-items: center;
  display: flex;
  background-color: var(--primary-color);
  border-radius: 100%;
}

.message {
  position: relative;
  width: 25vw;
  min-width: 300px;
  height: 50%;
  margin: 15px;
  padding: 0;
  border: 0;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

h1 {
  height: 25%;
  margin-bottom: 30px
}

p {
  min-width: 250px;
  width: 75%;
  height: 10px;
  margin: 10px;
  font-size: 1.25em;
}