@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Poppins');
	

*{
	marging: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}



html{
	scroll-behavior: smooth;
}


body{
	background: #111222;
}

section{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 50px 100px;
	color: #fff;
	
}

.container{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.main-title{
	
	font-size: 4em;
	margin-bottom: 50px;
}

.content{
	
	position: relative;
	width: 1150px;
	display: flex;
	justify-content: center;
	align-items: center;
	
}

.content .image{
	
	position: relative;
	width: 800px;
	height: 400px;
	overflow: hidden;
}

.content .image img{
	
	z-index: 111;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.content .text-box{
	
	z-index: 222;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	padding: 40px;
	max-width: 400px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	transform: translate(-80px, 50px);
}


.content .text-box h3{
	
	font-size: 2em;
	margin-bottom: 10px;
	
}


.button {
    width: 130px;
    background-color: rgb(207, 163, 11);
    text-align: center;
    color: white;
    font-family: sans-serif, serif;
    font-weight: 900;
    padding: 5px;
    border-radius: 2px;
    box-sizing: border-box;
}

.button:active {
    background-color: #7c7878;
    border: outset;
}

.section-title{
	font-size: 3em;
	margin-bottom: 50px;
}

.info-title{
	font-size: 1.8em;
	margin-bottom: 10px;
}

.info{
	width: 700px;
	margin-left: 50px;
}

.button2 {
    width: 130px;
    background-color: rgb(44, 43, 43);
    text-align: center;
    color: white;
    font-family: sans-serif, serif;
    font-weight: 900;
    padding: 10px;
    border-radius: 2px;
    box-sizing: border-box;
}

.button2:active {
    background-color: #7c7878;
    border: outset;
}


.media-info{
	width: 400px;
	margin-left: 50px;
	
}

.button3 {
    width: 130px;
    background-color: rgb(44, 43, 43);
    text-align: center;
    color: white;
    font-family: sans-serif, serif;
    font-weight: 900;
    padding: 10px;
    border-radius: 2px;
    box-sizing: border-box;
}

.button3:active {
    background-color: #7c7878;
    border: outset;
}

.sec-03{
	margin-bottom: 100px;
}

.sec-04{
	margin-bottom: 100px;
}















