body {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	background-color: #131419;
	color: #fff;
}

.header {
	text-align: center;
	padding: 80px 0;
}

.header h1 {
	font-size: 48px;
	margin-bottom: 20px;
}

.header p {
	font-size: 24px;
}

.countdown {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 30px 0;
}

.countdown-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 20px;
}

.countdown-item span {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 10px;
}

.countdown-item p {
	font-size: 24px;
}

.subscribe {
	text-align: center;
	padding: 50px 0;
}

.subscribe input[type=email] {
	padding: 10px;
	font-size: 16px;
	border-radius: 5px;
	border: none;
	width: 300px;
}

.subscribe button[type=submit] {
	padding: 10px 20px;
	font-size: 16px;
	background-color: #c74343;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

.subscribe button[type=submit]:hover {
	background-color: #b54141;
}

.social-icons {
	text-align: center;
	padding: 30px 0;
}

.social-icons a {
	display: inline-block;
	margin: 0 10px;
	font-size: 24px;
	color: #fff;
}

.social-icons a:hover {
	color: #c74343;
}

.footer {
	text-align: center;
	padding: 30px 0;
	font-size: 16px;
}
img {
    max-width: 20%;
    height: auto;
}

@media screen and (min-width: 768px) {
    /* adjust image size for screens that are at least 768px wide */
    img {
        max-width: 50%;
    }
}

@media screen and (min-width: 992px) {
    /* adjust image size for screens that are at least 992px wide */
    img {
        max-width: 20%;
    }
}
.logo {
    transition: transform 0.5s ease-out;
}

.logo:hover {
    transform: scale(0.8);
}
