html {
	font-size: 100%;

    border-width: 0;
    border-color: #333;
    border-style: solid;
	box-sizing: border-box;
}

body {
    font-size: 1rem;
}
@media (min-width: 768px) {
	body {
		font-size: 1.25rem;
	}
}
a {
    color: inherit;
	text-decoration: none;
}
img {
    max-width: 100%;
    width: auto;
    height: auto;

}
.bg-image {
    width: 100%;
    height: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.85);
}

.content-box {
	width: 100%;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 25px;
	box-sizing: border-box;
}

.content {
    max-width: 90vw;
    background-color: rgba(255, 255, 255, 0.65);
    padding: 15px;
    border-radius: 8px;
	margin: 75px 0;
    overflow-y: scroll;
    max-height: 70vh;
}

@media (min-width: 768px) {
	.content-box {
		position: absolute;
        height: 100%;
	}
    .content {
    	margin: 150px 0;
        overflow-y: auto;
        max-height: unset;
    }
}

@media (min-width: 1200px) {
	.content-box {
		padding: 100px;
	}
	.content {
		max-width: 50vw;
		margin: 0;
	}
}

#footer {
    display: flex;
    justify-content: end;
}
#footer a {
	font-size: 1rem !important;
}

@media screen and (max-width: 1200px) {
    #title_bg {
        background-color: #000;
    }
}

@media (max-width: 900px) {
    #footer .footer-menu {
        display: block;
    }
}