body {
    font-family: "Playfair Display", serif;
    line-height: 1.5;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url("./assets/bg.gif");
    background-size: cover;
    background-repeat: no-repeat;
}

a {
    color: orangered;
}

.layout-column {
    width: 700px;
    max-width: 80%;
    margin: 0 auto;
    padding-top: 85vh;
}

.layout-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.layout-row:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.content-box {
    background: rgba(0, 0, 0, 0.5);
    width: 500px;
    color: white;
    padding: 5px;   
    margin-top: 20px;
    border: 1px white solid;
    text-align: center;
    backdrop-filter: blur(4px);
}

.big-text {
    font-size: 70px;
    filter: drop-shadow(3px 3px teal);
}

.image {
    display: block; /* Required for tight borders */
    filter: brightness(80%);
    border: 1px solid black;
}

.borderless {
    border: none !important;
}