* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: baskersville;
    src: url(basker.ttf);
}

@font-face {
    font-family: crimson;
    src: url(crimson.ttf);
}


body {
    background-color: #030b16;
}
.container {
    width: 100%;
}

.header {
    position:relative;
}

.header::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 25%;
    background: linear-gradient(rgba(3, 11, 22, 0),rgba(3, 11, 22, 1));
}

.bottom-image {
    margin-top: -20px;
    position: relative;
}


.bottom-image::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 50%;
    background: linear-gradient(rgba(3, 11, 22, 1),rgba(3, 11, 22, 0));
}

.content {
    color: white;
    padding: 20px;
}

h1 {
    font-size: 50px;
    margin-top: 0px;
    margin-bottom: 20px;
    font-family: baskeville;
    color: #a8823b;
}

h2 {
    font-size: 30px;
    margin-top: 0px;
    margin-bottom: 20px;
    font-family: baskeville;
    color: #a8823b;
}

h3 {
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 20px;
    font-family: baskeville;
    color: #a8823b;
}



p {
    font-size: 20px;
    font-family: crimson;
    margin-bottom: 20px;
}

.field {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
    position: relative;
    bottom: 160px;
}


.scroll {
	width: 40px;
	height: 40px;
	border: 2px solid #a8823b;
	border-radius: 50%;
	position: relative;
	animation: down 1.5s infinite;
	-webkit-animation: down 1.5s infinite;
	&::before {
		content: '';
		position: absolute;
		top: 10px;
		left: 12px;
		width: 12px;
		height: 12px;
		border-left: 2px solid #a8823b;
        border-bottom: 2px solid #a8823b;
		transform: rotate(-45deg);
	}
}

@keyframes down {
	0% {
		transform: translate(0);
	}
	20% {
		transform: translateY(15px);
	}
	40% {
		transform: translate(0);
	}
}

@-webkit-keyframes down {
	0% {
		transform: translate(0);
	}
	20% {
		transform: translateY(15px);
	}
	40% {
		transform: translate(0);
	}
}

.center {
    text-align: center;
    width: 100%;
}

button {
    border-radius: 5px;
    border-color: #a8823b;
    background-color: #030b16;
    color: #a8823b;
    font-size: 20px;
    padding: 10px;
    margin-top: 20px;
    font-family: crimson;
    cursor: pointer;
    margin: auto;
    width: 100%;	

}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;;
    color: white
}

.modal::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(3, 11, 22, 0.8);
    z-index: -1;
}

.modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    background: #030b16;
    padding: 1em;
    border-radius: 5px;
    z-index: 2;
}

.code-container {
    display: flex;
    justify-content: center;
    gap: 5px; /* Space between the input fields */
    margin-bottom: 20px;
}

.code-container input[type="number"] {
    width: 45px; /* Adjust this value to achieve desired width */
    text-align: center;
    padding: 5px;
    font-size: 16px;
    color: #a8823b;
}

.code-container input[type="text"] {
    width: 120px; /* Adjust this value to achieve desired width */
    text-align: center;
    padding: 5px;
    font-size: 16px;
    color: #a8823b;
}

.modal .close-button {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 25px;
    color: #a8823b;
    cursor: pointer;
}

.incorrect-code {
    color: #a8823b; 
    display: none;
    text-align: center;
    margin-bottom: 20px;
}

.help {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #a8823b;
    color: #a8823b;
    background-color: #030b16;
    z-index: 999;
    text-align: center;
    font-size: 15px;
    line-height: 25px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.modal img {
    margin: auto;
    display: block;
    width: 100%;
}



.poem p {
    font-family: 'Georgia', serif; /* An elegant font for poetry */
    font-size: 1em; /* A readable font size */
    line-height: 1.5; /* Space out the lines a bit */
    text-align: justify; /* Justify the text for a more polished look */
    padding: 1em; /* Add some padding */
    margin: auto; /* Center the poem */
}

.option {
    font-weight: bold;
    color: #a8823b;
    margin-right: 10px;
}