* {
    outline: none;
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #6f2e0c;
    background-color: white;
    font-family: sans-serif;
    font-style: normal;
    font-weight: normal;
    z-index: 1;
    overflow: hidden;
    min-height: 100vh;
    position: relative;
}

main {
    overflow: hidden;
    max-width: 100vw;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

picture {
    display: flex;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}