@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', Arial, sans-serif; 
}

full-screen {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}
.logo {
    width: 400px;
}
.logo-header {
    width: 100px;
    padding-left: 40px;
}
.footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 20px 0 20px 0;
    text-align: center;
    background-color: #ffffff;
}
.footer-sub {
    position: fixed;
}
.footer a {
    margin: 0 10px;
    text-decoration: none;
    color: black;
}
.footer a:hover {
    text-decoration: underline;
}

.container-text {
	width: 100%;
	text-align: left;
}

header {
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 5px;
    background-color: #ffffff;
    border-bottom: 1px solid #ccc;
}
header img {
    margin-right: 20px;
}
main {
    padding: 50px;
    max-width: 1000px;
}