html, body {
    background-color: #000000;
}

body {
    font-family: 'Nacelle', sans-serif;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background-color: #000000;
}

.left-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.favicon {
    width: 32px;
    height: 32px;
}

h1 {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

h1:hover {
    color: navy;
}

nav a {
    text-decoration: none;
    font-size: 18px;
    padding: 8px 8px;
    color: white;
}

nav a:hover {
    text-decoration: underline;
    color: darkred;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content {
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 75px;
    padding: 20px 0;
}

.social-links a {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    text-decoration: underline;
    transform: scale(1.1);
    color: darkred;
}

a {
    text-decoration: none;
    color: white;
}

.globe-image {
    max-height: 600px;
    width: 100%;
    height: auto;
}
