@charset "UTF-8";
/* CSS Document */
.bg-image {
    background-image: url('../../Images/ErrorPage/bg.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh; /* Full screen height */
}


.center-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      text-align: center;
      background-color: #f0f0f0;
    }

.center-container img {
      max-width: 200px;
      height: auto;
      margin-bottom: 20px;
    }


.center-container h1 {
     font-size: 2rem;
     color: #333;
    }

body {
	font-family: 'Open Sans';font-size: 22px;
	}

.full-height {
	height: 100vh;
    }

