@font-face {
    font-family: "Poppins-Bold";
    src:
      local("Poppins"),
      url("./fonts/Poppins-Bold.ttf") format("truetype"),
      url("./fonts/Poppins-Bold.woff") format("woff"),
      url("./fonts/Poppins-Bold.woff2") format("woff2");
  }

  @font-face {
    font-family: "Poppins-Light";
    src:
      local("Poppins-Light"),
      url("./fonts/Poppins-Light.ttf") format("truetype"),
      url("./fonts/Poppins-Light.woff") format("woff"),
      url("./fonts/Poppins-Light.woff2") format("woff2");
  }

  @font-face {
    font-family: "Poppins-Thin";
    src:
      local("Poppins-Thin"),
      url("./fonts/Poppins-Thin.ttf") format("truetype"),
      url("./fonts/Poppins-Thin.woff") format("woff"),
      url("./fonts/Poppins-Thin.woff2") format("woff2");
  }

* {
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    height: 100vh;
}

header {
    height: 15%;
    width: 100%;
    background-color: #040d05;
    display: flex;
    align-items: center;
    justify-content: center;
  	overflow: auto;
}

.logotext {
    color:white;
    font-size: 30px;
    text-transform: uppercase;
    font-family: 'Poppins-Bold';
  	font-weight: 400;
}

.main {
    height: 85%;
    width: 100%;
    background-color: #040d05;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.maintenanceTextContainer {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-weight: 200;
    font-family: 'Poppins-Light';
    font-weight: lighter;
    width: fit-content;
    font-size: 1rem;
}

.maintenanceTextContainer h3{
    font-family: 'Poppins-Thin';
  	font-weight: 600;
}

.imglogo {
    max-height: 50%;
    max-width: 100%;
}