html, body {
    margin: 0;
    padding: 0;
}

body {
    background-color: #161722;
    color: white;
    font-family: "Poppins", sans-serif;
}

.copyright-notice {
    bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: fit-content;
}

/* Header */

.header-logo {
    display: flex;
    justify-content: center;
    margin-top: 11rem;
    margin-bottom: 1rem;
}

.header-logo img {
    height: 70px
}

.header-title {
    padding: 0 3rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 3rem;
    text-align: center;
}

.new-box {
    width: 250px;
    text-align: center;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 2rem;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 0px 3px inset #444257;
}

.new-box span {
    font-weight: 600
}

.new-box .blue {
    color: #8696FF
}

.new-box .yellow {
    color: #FFE95A
}

.header-boxes {
    display: flex;
    grid-gap: 1.5rem;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.contact-section {
    text-align: center;
    margin-top: 7rem;
}

.portfolio-notice {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.contact-section button {
    background-color: var(--theme-color);
    outline: none;
    border: none;
    border-radius: var(--br);
    color: #FFF;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0.5rem;
    transition: .25s;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.contact-section button:hover, .contact-section button:focus {
    filter: brightness(50%)
}

.leader {
    font-weight: 600;
}

/* Scroll */

::-webkit-scrollbar-track {
    background: rgb(0, 0, 0, 0);
}

 ::-webkit-scrollbar-thumb {
    background: var(--blue-grey);
    border-radius: 10px;
}

 ::-webkit-scrollbar-thumb:hover {
    background: #393c4d;
}

 ::-webkit-scrollbar {
    width: 10px;
}

/* Mobile */

@media (max-width: 1300px) {
    html {
        font-size: 90%;
    }
}

@media (max-width: 950px) {
    .header-logo {
        margin-top: 8rem;
    }
    html {
        font-size: 85%;
    }
}

@media (max-width: 799px) {
    .header-title {
        font-size: 1.7rem;
    }
    .contact-section button {
        margin-bottom: 1rem
    }
}

@media (max-width: 650px) {
    .header-boxes {
        flex-direction: column;
    }
}

@media (max-width: 580px) {
    .header-logo img {
        height: auto;
        width: 80%;
        margin: 0 auto;
        display: block;
    }
    .contact-section {
        margin: 5rem auto;
    }
    .header-title {
        margin-top: 1rem;
    }
}

@media (max-width: 450px) {
    .new-box {
        padding: .75rem 1rem;
    }
}