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

body {
    background: #3B3B3B url('/images/bg2.png') no-repeat center center fixed;
    background-size: 90%;
    color: #aaa;
    font-family: 'Courier New', 'Courier', monospace;
    font-size: 13px;
    line-height: 1.4;
    padding: 40px 20px;
    overflow-x: hidden;
}

a {
    color: #aaa;
}


.header {
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.grid-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.grid-row {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
}

.grid-row>* {
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
