:root{
    --primary-background-color: #CC0000;
    --white-color: #ffffff;
    --dark-color: #2b2b2b;
}

body {
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: var(--primary-background-color) !important;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0px;
}

#logo {
    width: 200vh;
}

.flex {
    display: flex;
    justify-content: center;
}

.w-full {
    width: 100%;
}

.justify-center {
    justify-content: center;
}

.my-4 {
    margin-top: 4px;
    margin-bottom: 4px;
}

.drop-shadow {
    filter: drop-shadow(0px 8px 10px #00000056);
}

.gray-borders {
    border: 4px solid #e6e6e6;
}

.round-borders {
    border-radius: 10px;
}

.white-text-color {
    color: var(--white-color);
}
.white-background-color {
    background-color: var(--white-color);
}

.dark-text-color {
    color: var(--dark-color);
}
.dark-background-color {
    background-color: var(--dark-color);
}

.left-margin-6 {
    margin-left: 6%;
}

.fill-w {
    width: 100vw;
}
.fill-h {
    height: 100vh;
}

.fill-80vw {
    width: clamp(300px, 60vw, 450px);
}

.spacer-5vh {
    height: 4vh;
}

.spacer-10vh {
    height: 7vh;
}

.header-font-size {
    font-size: 20px;
}

#contacts {
    margin-bottom: 10px
}

.menu {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
  
/* Menu Content/Box */
.menu-contents {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    max-width: 600px; /* Could be more or less, depending on screen size */
    width: 80%;
	padding-bottom: 50px;
}
  
/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
z-index: 2000;
    position: relative;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
@media all and (orientation: landscape) and (max-height: 605px){
	
	body{
		padding-bottom: 220px;
	}
	.fill-h {
	    height: 100vh;
		overflow-y: auto;
	}
	#logo{
		position: initial; 
	}
	#contacts{
		margin-top: 0px !important;
	}
	.flex {
    		display: flex;
    		justify-content: center;
		height: auto;
	}
	.spacer-5vh {
	    height: 5vh;
	}
	
}