* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: monospace;
}

body {
    background-color: white;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 20px;
    width: 100%;
}

.logo-wrapper {
    position: relative;
    /* Spans the full width of the container */
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 30px;
}

.logo {
    position: relative;
    z-index: 2;
    width: 55px;
    height: auto;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.chain-tiled {
    position: absolute;
    bottom: 0;

    left: -20px;
    right: -20px;

    height: 75px;
    z-index: 1;
    opacity: 0.25;

    background-image: url("chain.svg");
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: 55px auto;

    pointer-events: none;
}

.blog-frame {
    background-color: black;
    color: white;
    border-radius: 30px;
    padding: 25px 30px;
    width: 100%;
    max-width: 600px;
    text-align: left;
}

p,
a {
    line-height: 1.6;
    font-size: 1rem;
}

.highlight {
    color: #e73121;
    text-decoration: none;
    border-bottom: 1px dotted #e73121;
    transition: opacity 0.2s ease;
}

a.highlight:hover {
    opacity: 0.8;
}
