html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Special Elite', monospace;
    background-color: #b1ac9f;
    color: #2E2C2F;
    margin: 0;
    line-height: 1.45;
}


.container {
    position: absolute;
    top: 80px;
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr;
    background-color: #FDF6E3;
    z-index: -1;
}


.image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box {
    border-radius: 0px;
    border-top: 1px dashed rgba(0, 0, 0, 0.2);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    width: 100%;
    height: calc(100vh - 160px);
    display: flex;

}