@font-face {
    font-family: 'Hack Nerd';
    src: url('HackNerd-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #f6efe2;
    margin: 0;
    padding: 0;
    font-family: 'Hack Nerd', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

h1 {
    color: #401b00;
    font-size: 48px;
    margin-bottom: 20px; /* Adjusts space between the heading and the image */
}

img {
    max-width: 100%; /* Ensures the image is responsive and fits the container */
    height: auto; /* Maintains the aspect ratio of the image */
}
