body {
    margin: 0;
    padding: 0;
    background-color: rgb(90, 90, 217);
    background-image: radial-gradient(#d1d1d1 1px, transparent 1px);
    background-size: 20px 20px;
    overflow-x: hidden;
}
img {
    max-width: 50vw;
    max-height: 200px;
    object-fit: cover;
    border: 1px solid black;
    border-radius: 5px;
    cursor: pointer;
}
a {
    color: crimson;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
footer {
    margin-top: 20px;
    margin-bottom: 0;
    padding-bottom: 1px;
    padding-top: 1px;
    text-align: center;
    background-color: rgba(131, 131, 119, 0.319);
}
#Title {
    margin-top: 0;
    margin-bottom: 20px;
    padding-top: 20px;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
}
.header {
    background-color: rgb(133, 133, 68);
    border-bottom: 10px solid firebrick;
    border-radius: 0 0 20px 20px;
}
.info {
    max-width: 50vw;
}
#main_info {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}
.Games {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 100;
}
#games_info {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}
.article {
    background-color: rgb(182, 209, 210);
    margin-bottom: 20px;
    padding-left: 2vw;
    padding-top: 10px;
    padding-bottom: 5px;
    border-radius: 10px;
    border: 1px solid rgb(8, 8, 8);
}
.main_stuff {
    max-width: 800px;
    margin: 0 auto;
}
.engineering, .about{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.gallery {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 20px;
}
.gallery_container {
    margin: 0 auto;
}
#zoom {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    background-color: rgba(128, 130, 131, 0.419);
    z-index: 999;
    object-fit: contain;
    align-items: center;
    justify-content: center;
}
#zoom img {
    max-width: 90%;
    max-height: 80%;
    height: auto;
    width: auto;
}
#zoom button {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 20px;
}