*,
html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    transition: all 0.5s ease;
    font-family: Arial, Helvetica;
}

/* Dark Mode */
body.dark-mode {
    background: linear-gradient(to right, #2c3e50, #4ca1af);
    color: #f5f5f5;
}

body.dark-mode a {
    color: white;
}

body.dark-mode #to-the-top-img-path,
body.dark-mode #scroll-to-project-img-path {
    fill: #f0f0f0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 20px;
}

h1 {
    font-size: 1.6em;
    cursor: pointer;
}

h2 {
    font-size: 1.2em;
}

h4 {
    font-size: 0.8em;
}

a {
    text-decoration: none;
    font-weight: normal;
    color: black;
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto auto auto;
}
