* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

h1{
    font-size: 1rem;
}

body {
    background-image: url('img/back.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 20px;
    cursor: url("cursor/Cursor_14.cur"), auto;
} 

#top-nav{
    display: inline-flex;
    gap: 20px;
}
#top-nav a{
    text-decoration: none;
    color: black;
    margin-top: 5px;
}
#container-main {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

main {
    background-color: white;
    border: 2px solid black;
    border-radius: 4px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 300px;
}

main img:first-child {
    width: 200px;
    align-self: center;
}

section {
    background-color: white;
}

section h2 {
    margin-bottom: 10px;
}

section ul {
    list-style-type: disc;
    padding-left: 20px;
}

#metalgear:hover {
    cursor: url(cursor/Gun\ Cursor\ Advanced.cur), auto;
}

header {
    text-align: center;
    background-color: white;
    border: 2px solid black;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
}

#container-main-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#container-content {
    background-color: white;
    border: 2px solid black;
    border-radius: 4px;
    padding: 15px;
}

.container-content-text {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 20px 0;
}

.container-content-text img {
    max-width: 150px;
    height: auto;
}

#container-content p {
    line-height: 1.6;
}

main img:last-child {
    width: 100%;
    border-radius: 4px;
}

.window-body{
    background: #fff;
    box-shadow: inset -1px -1px #fff, inset 1px 1px grey, inset -2px -2px #dfdfdf, inset 2px 2px #0a0a0a;
}