body {
    background-image: url("images/trees.jpg");
    color: white;
    font-style: 'Garamond', serif;
}

.page {
    max-width: 95vw;
    min-height: 65vh;
    margin: 0 5vw;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu {
    border-bottom: 2px solid white;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-display: small-caps;
    font-weight: bolder;
    display: flex;
    flex-direction: row;
}

.menu .item {
    font-size: small;
    margin: .5rem 0;
    padding: .1rem;
}

.title {
    margin: 0;
    padding: 0;
    font-size: 10vw;
}

.title .item {
    margin: 0;
    padding: 0;
}

.container {
    width: auto;
    height: auto;
    margin: 1rem;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
}

.card {
    position: relative;
    left: 0px;
    width: 75px;
    height: 100px;
    margin: 1rem;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.card:not(:first-child) {
    margin-left: -50px;
}

.card:hover {
    transform: translateY(-20px);
}

.card:hover~.card {
    left: 50px;
}

.card#glassmorphism {
    border-top: 2px solid #FFFFFF75;
    border-left: 2px solid #FFFFFF75;
    border-right: none;
    border-bottom: none;
    box-shadow: 5px 5px 12px #00000035;
    background: #FFFFFF25;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.item {
    margin: 1rem;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}