@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mulish', sans-serif;
    font-size: 36px;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

body button {
    -webkit-tap-highlight-color: transparent;
}

body a {
    text-decoration: none;
    color: black;
}

body h1 {
    font-family: 'Space Mono', monospace;
    font-size: 82px;
}

.container {
    display: grid;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

.container {
    background-image: url("https://images.unsplash.com/photo-1549558549-415fe4c37b60?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1419&q=80");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.container-2 {
	display: grid;
	background-blend-mode: darken;
	background-color: #ffffff96;
	height: 90%;
    width: 70%;
	margin: auto;
	border-radius: 30px;
}

.heading {
    display: flex;
    justify-content: center;
    margin: auto;
    margin-bottom: -30px;
}

.heading h1 {
	font-family: 'Space Mono', monospace;
	font-size: 82px;
	padding: 0 37px;
	text-align: center;
	line-height: 1;
}

.description {
	display: flex;
	justify-content: center;
	text-align: center;
	height: fit-content;
	width: 78%;
	margin: auto;
    padding: 20px;
}

.links {
	display: flex;
	justify-content: center;
    height: fit-content;
}

.links button {
	width: 200px;
	height: 58px;
	font-size: 22px;
	text-transform: uppercase;
	outline: none;
	cursor: pointer;
	background: #003633bc;
	border: none;
	border-radius: 18px;
	color: white;
}

@media only screen and (max-width: 634px) {
    .container-2 {
        height: 90%;
        width: 90%;
    }
}

@media only screen and (max-width: 466px) {
    .heading h1 {
        font-size: 65px;
    }

    .description {
        width: 78%;
        padding: 20px;
        font-size: 23px;
    }
}

@media only screen and (max-width: 376px) {
    .heading h1 {
        padding: 0;
    }
}