:root {
    --dark-grey: #121416;
    --yellow: #F7C81D;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0e0e0e;
}

#top-level {
    position: fixed;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
}

#menu {
    background-color: var(--dark-grey);
    padding: 1rem 3rem;
    display: flex;
    gap: 3rem;
    margin: 2rem auto;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: max-content;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, .1);
}

#menu a {
    font-weight: 700;
}

a:hover {
    color: var(--yellow);
}

#container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
}

#bento-center, #bento-left, #bento-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.box{
    background-color: var(--dark-grey);
    border-radius: 25px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, .1);
}

.box-big{
    width: 412px;
    height: 384px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-wide {
    width: 412px;
    height: 181px;
}

.box-tall {
    width: 201px;
    height: 384px;
}

.box-half-tall {
    width: 201px;
    height: 181px;
}

.half-tall {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.box-small {
    width: 201px;
    height: 261px;
}

.box-medium {
    width: 413px;
    height: 311px;
}



.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

/* #contact {
    width: 412px;
    height: 181px;
    display: flex;
    align-items: center;
    justify-content: center; */
}