body {
    font-family: "Outfit", Arial, sans-serif;
    margin: 0;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}
#nav {
    top: 0px;
    position: sticky;
    z-index: 1000;
    background-color: #333;
    color: #fff !important;
    padding: 16px 0;
    display: flex;
    align-items: center;
}
#nav-left {
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 16px;
    width: 50vw;
}
#nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
#nav-logo:hover {
    filter: brightness(0.8);
}
#name {
    font-size: 16px;
}
#nav-right {
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 16px;
    width: 50vw;
    justify-content: flex-end;
}
#nav-right a,
#name {
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
#nav-right a:hover,
#name:hover {
    color: #6f91ff !important;
}
.highlight {
    color: #6f91ff;
}
.highlight2 {
    color: #6f91ff;
    font-family: "Kaushan Script", cursive !important;
}
#content {
    padding-left: calc(50vw - 400px);
    padding-right: calc(50vw - 400px);
    padding-top: 64px;
    padding-bottom: 100px;
    display: flex;
    margin: auto;
    flex-direction: column;
}
a {
    color: #333333;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
a:hover {
    color: #6f91ff;
}
#top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#articleimg {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}
#articleimg:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}
#articletext h1,
#articletext h2,
#articletext h3,
#articletext h4,
#articletext h5,
#articletext h6 {
    margin: 10px 0;
}
#footer {
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
#footer-top {
    display: flex;
    gap: 20px;
    align-items: center;
}
#footer-top img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
#footer-top img:hover {
    filter: brightness(0.8);
}
#fcolumns {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.fcolumn {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.fcolumn a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}
.fcolumn a:hover {
    color: #6f91ff;
}
.copy,
.unsp {
    color: #5f5f5f;
}
.unsp a {
    color: #5f5f5f;
    text-decoration: none;
    transition: all 0.3s ease;
}
.unsp a:hover {
    color: #4b6abf;
}
