html,
body {
    overflow: hidden;
}

.logo {
    background-image: url("assets/impression-header.png");
    color: white;
    font-family: 'Oswald', sans-serif;
    padding: 20px;
    height: 340px;
    margin: 0;
    background-size: cover;
    position: relative;
}

.logo::before {
    background-color: rgba(33, 33, 33, 1);
    opacity: 0.4;
    display: block;
    content: '';
    top: 0;
    right: 0;
    position: absolute;
    left: 0;
    bottom: 0;
}

.logo h1 {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 20px;
    font-size: 60px;
    font-family: 'Oswald', sans-serif;
    position: relative;
    z-index: 1
}

.logo a {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 16pt;
    line-height: 1.26;
    text-decoration: none;
    color: inherit;
    display: inline-block;
    line-height: 1;
    padding: 8px 6px;
    position: relative;
    z-index: 1;
}

.line {
    width: 75%;
    height: 15px;
    margin: auto;
    background-color: rgba(255, 82, 82, 1);
}

.custom {
    margin-top: 100px;
    text-align: center;
    align-items: center;

}

.custom a {
    color: rgb(248, 236, 236);
    text-align: center;
    margin-top: 10px;
    display: inline-block;

}

.button {
    display: inline-block;
    padding: 10px 0;
    width: 100px;
    background-color: #75211e;
    color: #fff;
    text-decoration: none;
    border: 2px solid #5b1803;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Oswald', sans-serif;
	letter-spacing: 1.5px;
}

.button:hover {
    background-color: #f33906;
    color: #090101;
	opacity: 0.8;
}
.logo img{
position: relative;
z-index: 1;
height: 60px;
width: 80px;
}

@media screen and (max-width: 767px) {
    .custom {
        margin-top: 50px;
    }
    .logo {
        height: auto;
    }
	.logo h1 {
		margin-top: 50px;
		font-size: 32px;
		margin-bottom: 40px;
	}
}

@media screen and (max-width: 420px) {
	.logo h1 {
		font-size: 24px;
	}
	.button {
		font-size: 16px;
	}
}