@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

body {
    font-family: 'Roboto', sans-serif !important;
    background-color: black !important;
    margin: 0 !important;
    padding: 0 !important;
    color: grey;
}

header {
    background-color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}

.header-container {
    display: flex;
    align-items: center;
}

.back-link,
.home-link {
    text-decoration: none;
    color: black;
    font-weight: bold;
    margin-right: 20px;
}

.back-link:hover,
.home-link:hover {
    text-decoration: underline;
}

.logo {
    text-align: center;
    margin-top: 30px;
}

.page-title {
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
}

.content {
    margin: 2% 2%;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;	
}

.page-title-link {
	text-decoration: none !important;
	display: flex;
	justify-content: center;
	background-color: white;
    border-radius: 10px;
    color: black;
	text-transform: uppercase;
	font-weight: 800;
    padding: 15px;
	margin: 10px 20%;	
}

.page-title-link:hover {
	text-decoration: underline;
}

.footer-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.footer-link {
    text-decoration: none;
    color: white;
    margin: 0 10px;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-text {
    text-align: center;
    margin-top: 20px;
	margin-bottom: 40px;
}

.simple-text {
    text-align: center;
    margin: 20px;	
}
