html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    transition: background-color 0.5s ease, color 0.5s ease;
}

body.dark-mode {
    background: linear-gradient(135deg, #121212, #1E1E1E);
    color: #FFFFFF;
}

.no-transition * {
    transition: none !important;
}

button {
    font-family: 'Courier New', Courier, monospace;
}

a {
    border-bottom: 2px solid #ECBD65;
}

h1 {
    color: #0052D9;
    font-size: 2rem;
}

h2 {
    color: #0052D9;
}

header {
    background-color: #0052D9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background-color 0.5s ease;
}

footer {
    background-color: #0052D9;
    padding: 1rem;
    text-align: center;
    position: sticky;
    bottom: 0;
    transition: background-color 0.5s ease;
}

footer p {
    color: #FFFFFF;
    transition: color 0.5s ease;
}

.navbar {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    flex-wrap: wrap;
}

.navbar a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #ECBD65;
}

.navbar a:active {
    color: #000000;
}

body.dark-mode .navbar a {
    color: #FFFFFF;
}

body.dark-mode .navbar a:hover {
    color: #ECBD65;
}

body.dark-mode .navbar a:active {
    color: #0052D9;
}

.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 50px;
    padding-right: 50px;
    scroll-snap-align: start;
    text-align: center;
}

.logo {
    width: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.button {
    background-color: #0052D9;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.button:hover {
    color: #ECBD65;
}

.button:active {
    background-color: #ECBD65;
    color: #0052D9;
    transform: translateY(2px);
}

body.dark-mode .button {
    background: linear-gradient(135deg, #1E1E1E, #121212);
    color: #FFFFFF;
}

body.dark-mode .button:hover {
    color: #ECBD65;
}

body.dark-mode .button:active {
    background-color: #ECBD65;
    color: #0052D9;
}

.list {
    list-style-type: none;
    flex-wrap: wrap;
    font-size: larger;
    padding: 0;
}

.list a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.list a:hover {
    color: #0052D9;
}

.list a:active {
    color: #ECBD65;
}

body.dark-mode .list a {
    color: #FFFFFF;
}

body.dark-mode .list a:hover {
    color: #ECBD65;
}

body.dark-mode .list a:active {
    color: #0052D9;
}

body.dark-mode header {
    background: linear-gradient(135deg, #1E1E1E, #121212);
}

body.dark-mode footer {
    background-color: #1E1E1E;
    background: linear-gradient(135deg, #1E1E1E, #121212);
}

body.dark-mode footer p {
    color: #FFFFFF;
}

body.dark-mode footer p:hover {
    color: #ECBD65;
}

body.dark-mode footer p:active {
    color: #0052D9;
}

footer p:hover {
    color: #ECBD65;
}

footer p:active {
    color: #000000;
}

#theme-toggle {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.5s ease;
}

#theme-toggle:hover {
    color: #ECBD65;
}

#theme-toggle:active {
    color: black;
}

body.dark-mode #theme-toggle:active {
    color: #0052D9;
}

::selection {
    background-color: #ECBD65;
    color: #0052D9;
}

.four-oh-four {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    flex-wrap: wrap;
    color: #FFFFFF;
}

.back-to-home {
    color: #000000;
    text-decoration: none;
}

body.dark-mode .back-to-home {
    color: #FFFFFF;
}