
body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    background-color: #111;
    color: #ccc;
    line-height: 1.6;
    padding: 20px;
}


.title-container {
    width: fit-content;
    margin: 0 auto 40px auto;
    background: url('../assets/wood.png') no-repeat center;
    background-size: cover;
    padding: 40px 60px;
    transform: rotate(-5deg);
    box-shadow: 0 0 20px black;
    border-radius: 8px;
}


h1 {
    font-size: 3em;
    color: red;
    text-shadow: 2px 2px 6px black;
    margin: 0;
    text-align: center;
    font-weight: bold;
    line-height: 1.2;
}


section {
    max-width: 700px;
    margin: 0 auto;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
}


p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #ddd;
}


p::before {
    content: '';
    display: block;
    height: 10px;
}


code {
    background-color: #000;
    color: #00ffcc;
    font-family: 'Courier New', Courier, monospace;
    padding: 2px 4px;
    border-radius: 3px;
}


img {
    display: block;
    max-width: 100%;
    margin: 20px auto;
    border: 3px solid #444;
    border-radius: 5px;
    box-shadow: 0 0 15px #000;
}


.terminal {
    background-color: #000;
    color: #0f0;
    font-family: monospace;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    white-space: pre-wrap;
}


.text-image-row {
    display: flex;
    gap: 20px;
    align-items: center;  
    margin-bottom: 30px;
}

.text-image-row p {
    flex: 2;
}

.text-image-row img {
    flex: 1;
    max-width: 250px;
    margin: 0;
}

a{
    text-decoration: none;
    color: white;
    padding: 5px;
    border: 1px solid white;
    border-radius: 10px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 300;
}

a::before {
    content: " <  ";
}

@media (max-width: 768px) {
    .text-image-row {
        flex-direction: column;
    }

    .text-image-row img {
        max-width: 100%;
    }
}
