*,
*::before,
**::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}


@font-face {
    font-family: comicSans;
    src: url(/font/Comic\ Sans\ MS\ 400.ttf);
}

body {
    background: url(/img/background.png);
    background-size: cover;
    background-repeat: no-repeat;
}

h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: comicSans;
    font-size: 5em;
}

/* Centering the input box */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    /* Adjust the height as needed */
}

.input-box {
    width: 200px;
    height: 30px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.input-box:focus {
    outline: none;
    border-color: #00aaff;
    box-shadow: 0 0 5px #00aaff;
}

.wrapper {
    width: 100%;
    height: 100vh;
}

.spacer {
    aspect-ratio: 960/200;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
}

.layer1 {
    background-image: url('/img/top1.svg');
}