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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #121212;
    color: #ffffff;}

header {
    background: #1e1e1e;
    color: #FF7F00;
    padding: 20px 0;
    text-align: center;}

header h1 {
    margin-bottom: 10px;}

nav ul {
    list-style: none;
    padding: 0;}

nav ul li {
    display: inline;
    margin: 0 15px;}

nav ul li a {
    color: #00BFFF;
    text-decoration: none;}

nav ul li a:hover {
    text-decoration: underline;}

main {
    padding: 20px;}
    
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;}
        
    article {
        width: 90%;}}

article {
    background: #1e1e1e;
    border: 1px solid #333333;
    border-radius: 5px;
    margin: 10px;
    padding: 15px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);}

article img {
    max-width: 100%;
    height: auto;}

footer {
    background: #1e1e1e;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;}
    
.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;}

.boxed-content {
    padding: 20px;
    background: #1e1e1e;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 20px;}

.boxed-content img {
    max-width: 100%;
    height: auto;}
        
.boxed-item {
    background: #1e1e1e;
    border: 1px solid #333333;
    border-radius: 5px;
    margin: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);}

.boxed-item img {
    max-width: 100%;
    height: auto;}
    
.link-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #4d9a00;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;}

.contact-item {
    background: #1e1e1e;
    border: 1px solid #333333;
    border-radius: 5px;
    margin: 10px 0;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);}

.link-button:hover {
    background-color: #408100;
    text-decoration: underline;}
