
:root {
    --background: rgb(250, 234, 223);
    --darkblue: rgb(33, 83, 97);
}

h1 {
    color: var(--darkblue);
    font-family: Courier New,Courier,Lucida Sans Typewriter,Lucida Typewriter,monospace;
    max-width: 100%;
}

body {
    background-color: var(--background);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    box-sizing: border-box;
}

.hero {
    max-width: 100%;
    max-height: 80vh;
    flex: 0 1 auto;
    min-width: 0;
    object-fit: contain;
}

@media (max-width: 700px) {
    .layout {
        flex-direction: column;
        align-items: center;
    }
    .hero {
        max-height: 50vh;
    }
}

p {
    font-family: Courier New,Courier,Lucida Sans Typewriter,Lucida Typewriter,monospace;
    font-size: 1.5rem;
    color: var(--darkblue);
    max-width: 100%;
}

.tools {
    font-family: Courier New,Courier,Lucida Sans Typewriter,Lucida Typewriter,monospace;
    color: var(--darkblue);
    flex: 0 0 16rem;
}

.tools h2 {
    color: var(--darkblue);
}

.tools ul {
    list-style: none;
    padding: 0;
}

.tools a {
    color: var(--darkblue);
}