html
{
    height: 100%;
}

body {
	background-color: #000000;
	font-family: Arial, sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	margin: 0;
	padding: 0;
  }
  
.menu-view {
    width: 100%;
    height: 100vh;
}

  #logo-container {
	text-align: center;
	margin-bottom: 20px;
  }
  
  #logo {
	max-width: 100%;
	height: auto;
  }
  
  #menu-buttons {
	text-align: center;
  }
  
  .button {
	display: inline-block;
	padding: 10px 20px;
	margin: 10px;
	background-color: #ffffff;
	border: none;
	border-radius: 50px;
	font-size: 16px;
	color: #000000;
	text-decoration: none;
	transition: background-color 0.3s ease;
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
	cursor: pointer;
  }
  
  .button:hover {
	background-color: #dddddd;
  }
  
.header {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('/Images/Background.jpg') center center no-repeat;
    background-size: cover;
}

.header-content {
	padding-top: 10rem;
	padding-bottom: 2.125rem;
	text-align: center;
}

.header .text-container {
	margin-bottom: 3rem;
}


.header .btn-solid-lg {
	margin-right: 0.5rem;
	margin-bottom: 1.25rem;
}
  
  .column {
	float: left;
	width: 50%;
	padding: 10px;
	height: 300px; /* Should be removed. Only for demonstration */
  }
  
  /* Clear floats after the columns */
  .row:after {
	content: "";
	display: table;
	clear: both;
  }
  
  @media screen and (max-width: 600px) {
	.button {
	  display: block;
	  margin: 10px auto;
	}
	.column {
	  width: 100%;
	}
  }