* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
}

.container {
	display: flex;
    flex-direction: column;
}

.header {
    padding: 20px;
	/*position: fixed;*/
	width: 100%;
	height:10%;
	min-height: 120px;
	min-width: 250px;
	display: inline-block;
}

.logo {
	vertical-align: center;
    width: 10%;
    height: 100%;
	margin: 0 auto;
	min-height: 60px;
	min-width: 120px;
}

.main {
	/*position:absolute;*/
	width:100%;
	min-height: 70vh;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.fdMsg {
	background-color: #01969A;
	border : solid 1px black;	
}

.error-container {
    padding: 20px;
}

.error-code {
    font-size: 120px; 
    color: white; 
}

.error-message {
    font-size: 24px; 
    color: white;
}

