@font-face {
    font-family: 'Poppins';
    src: url('resources/fonts/Poppins/Poppins-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

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

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

body {
	min-height: 100vh;
	width: 100%;
	position: fixed;
	
	display: flex;
	flex-direction: column;
	
	margin: 0;
	
    font-family: 'Poppins', sans-serif;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
	background-image: url('resources/images/backgrounds/white-paper-texture.jpg');
    background-size: cover;
    background-position: center;
    
    filter: opacity(0.3);
    z-index: -1;
}

.pattern__zigzag {
    position: fixed;
    top: 30%;
    left: -50px;
    width: 50vw;
    z-index: -1;
}

.pattern__donut {
    position: fixed;
    width: 30vw;
    bottom: -7px;
    left: 25px;
    z-index: -1;
}

.pattern__spiral {
    position: fixed;
    top: -200px;
    right: 5%;
	z-index: -1;
    width: 35vw;
	height: 100%;
}

.title__content {
	margin: 35px 50px;
	font-family: 'Poppins';
	color: #55433B;
}

.title {
	font-weight: bold;
	font-size: 65px;
	line-height: 1;
}

.date {
	font-weight: normal;
	transform: rotate(90deg);
	transform-origin: top;
	display: inline-block;
	font-size: 20px;
}

.content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 70px;
	font-family: 'Poppins';
}

.button {
	width: 250px;
	height: 80px;
	
	background-color: #55433B;
	border-radius: 25px;
	
	font-weight: normal;
	font-size: 25px;
	color: white;
	cursor: pointer;
	
	border: 0;
}

.link_download {
	text-decoration: none;
	margin-top: 8px;
}

.content_download_text {
	font-size: 17px;
	color: #55433B;
}

.footer {
	position: fixed;
	bottom: 0px;
	
	width: 100%;
	
}
.footer_content {
	margin: 35px 50px;
	
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.footer_media {
	display: flex;
	align-items: center;
	gap: 40px;
}

.footer_media a {
	text-decoration: none;
}

.footer .footer_media a img{
	width: 40px;
}

.footer_person {
	display: flex;
	flex-direction: column;
}

.footer .footer_person span {
    font-family: 'Poppins';
    color: #55433B;
    text-align: right;
}

.footer__name {
	font-size: 30px;
	font-weight: bold;
}

.footer__desc {
	font-size: 25px;
	font-weight: normal;
}

.responsive-break {
    display: none;
}

@media only screen and (max-width: 750px) {
	.pattern__zigzag {
		top: 20%;
		left: -180px;
		width: 100vw;
	}
	.pattern__donut {
		width: 50vw;
	}
	.pattern__spiral {
		top: -50px;
		right: -20px;
		width: 45vw;
	}
	.title__content {
		margin: 20px 30px;
	}
	.title {
		font-size: 40px;
	}
	.date {
		font-size: 12px;
	}
	.content {
		margin-bottom: 110px;
	}
	.button {
		width: 200px;
		height: 60px;
		font-size: 19px;
		border-radius: 20px;
	}
	.link_download {
		margin-top: 0px;
	}
	.content_download_text {
		font-size: 12px;
	}
	.footer_content {
		margin: 20px 30px;
	}
	.footer .footer_media a img{
		width: 32px;
	}
	.footer_person {
		width: 70%;
	}
	.footer__name {
		font-size: 20px;
	}
	.footer__desc {
		font-size: 19px;
	}
}

@media only screen and (max-width: 900px) {
	.footer_media {
		gap: 15px;
		flex-direction: column;
	}	
	.responsive-break {
        display: inline;
    }
}