* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

a{
    text-decoration: none;
}

footer{
    width: 100%;
    height: 3vh;
    color: #fff;
    background-color: #021022;
    padding-left: 2rem;
}

#main_body {
    width: 100vw;
    height: 97vh;
    background-color: #021022;
    color: #fff;
    padding: 4px;
    font-family: 'Noto Sans Mono'
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30vh;
    border-radius: 8px;
    padding: 20px
}

.logo_wrapper {
    width: 100%;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    margin-bottom: 16px
}

.logo_wrapper img {
    width: 14rem
}

.links_area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 25vh;
    left: 5vw;
    font-size: 1.8rem;
    margin: 0 10px;
    text-wrap: wrap;
    width: 100%;
    text-align: center
}

.links_area span {
    width: 80%;
    background-color: #ffffff12;
    border: 1px solid #fff;
    border-radius: 6px;
    margin: 6px 0;
    font-weight: 600;
    text-align: left;
    padding: 6px
}

.links_area span a{
    text-decoration: none;
    color: #fff ;
}

.text_header span:hover {
    cursor: pointer
}

#menu {
    text-align: center;
    width: 70px
}

.main-container {
    padding: 4px;
    width: 100%;
    height: 69vh;
    display: flex
}

.img-area {
    width: 100%;
    height: inherit;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.img-area img {
    object-fit: cover
}

.celebrations-hours {
    color: #fff
}


@media screen and (min-width: 950px) {
    .logo_wrapper {
        width: 100%;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        margin-bottom: 16px
    }

    .logo_wrapper img {
        width: 14rem
    }

    .links_area {
        display: block;
        flex-direction: inherit;
        align-items: inherit;
        position: inherit;
        top: inherit;
        left: inherit;
        font-size: 1.8rem;
        margin: 0 10px;
        text-wrap: wrap;
        width: 100%;
        text-align: center
    }

    .links_area span {
        margin: 5px 15px;
        width: inherit;
        background-color: transparent;
        border: inherit;
        border-radius: inherit;
        font-weight: 600;
        text-align: left;
        padding: 6px;
        cursor: pointer
    }

    .text_header span:hover {
        cursor: pointer
    }

    #menu {
        text-align: center;
        width: 70px
    }

    .main-container {
        padding: 4px;
        width: 100%;
        height: 69vh;
        display: flex
    }

    .img-area {
        width: 100%;
        height: 30vh;
        align-self: center;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden
    }

    .img-area img {
        object-fit: cover;
        opacity: .9
    }
}