html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff !important;
    min-height: 100vh;
}

p {
    font-size: 1rem;
    text-align: justify;
}

h1 {
    font-size: 64pt;
}

h2 {
    font-size: 24pt;
}

h3 {
    font-size: 18pt;
}

@media only screen and (max-width: 1080px) {
    p {
        font-size: 2rem !important;
    }

    h1 {
        font-size: 64pt;
    }

    h2 {
        font-size: 36pt;
    }

    h3 {
        font-size: 28pt;
    }
}

@font-face {
    font-family: Hack;
    src: url(res/Hack-Regular.ttf);
}

@keyframes iconSlide {
    0% {
        margin-top: 20%;
    }
    100% {
        margin-top: 100px;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    top: 18vh;
}

.profile-picture {
    max-width: 200px;
}

.profile-pictures-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 1080px) {
    .profile-pictures-container {
        flex-direction: column !important;
    }

    .profile-pictures-container > div {
        margin-bottom: 64px;
    }

    .profile-picture {
        max-width: 400px;
    }
}

.profile-pictures-container > div { /* Individual containers (each for person) */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.profile-pictures-container p {
    margin-top: -15px !important;
}

@media screen and (max-width: 1080px) {
    .section-heading {
        text-align: center;
    }
}

.logo {
    width: 650px;
    margin-top: 5%;
    user-select: none;
    z-index: 5;
}

.logo-text {
    opacity: 0;
    color: #0e0e0e;
    font-size: 8rem;
    font-family: 'Hack', sans-serif;
    animation: 1s ease-out 0s 1 fade-in;
    animation-fill-mode: forwards;
    animation-delay: 1.9s;
    user-select: none;
}

.section-1 {
    width: 100%;
    padding-bottom: 490px;
}

@media screen and (max-width: 760px) {
    .section-1 {
        padding-bottom: 0 !important;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-showcase .uk-card-body {
        border: none !important;
    }

    .logo-container {
        margin-top: -250px;
    }

    .product-showcase .uk-card:nth-child(2) {
        margin-top: 60px;
    }
}

.section-2 {
    width: 100%;
    padding-bottom: 80px;
    padding-top: 80px;
    background-color: #0e0e0e;
    color: #FFFFF0 !important;
}

.section-2 .uk-card-body {
    background: #0e0e0e !important;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    color: #ffffff !important;
}

.section-2 .uk-button-text::before {
    border-bottom-color: #ffffff !important;
}

.product-showcase img {
    height: 65px !important;
}

.product-showcase .uk-card-header {
    text-align: center;
}

.section-2 .uk-card-footer {
    background: #0e0e0e !important;
    border: 1px solid #ffffff;
}

.section-2 a {
    color: #ffffff !important;
}

.section-2 p::selection, h1::selection, h2::selection, h3::selection, h4::selection {
    background-color: #ffffff !important;
}

.section-2 h2, h3 {
    color: #ffffff !important;
}

.bright-icon {
    color: #ffffff;
}

.down-nav-icon {
    width: 80px;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: -8px;
}

h1, h2, h3, h4 {
    font-family: 'Hack', sans-serif;
}

.heading-section-secondary {
    font-size: 64pt;
    color: #ffffff;
    padding-top: 24px;
    padding-bottom: 24px;
}

.heading-section-primary {
    font-size: 64pt;
    color: #0e0e0e;
    padding-top: 24px;
}

canvas {
    position: absolute;
    z-index: 1;
}

@media screen and (max-width: 1080px) {
    .heading-section-secondary {
        text-align: center;
    }

    .heading-section-primary {
        text-align: center;
    }

    .contact-list {
        font-size: 2rem;
        text-align: center;
    }
}

.text-secondary {
    color: #ffffff;
    font-family: 'Hack', sans-serif;
}

.text-secondary a {
    color: #ffffff;
    text-decoration: underline;
}


.padding-sides {
    padding-left: 120px;
    padding-right: 120px;
}

.section-3 {
    padding-top: 80px;
}

@media only screen and (max-width: 1080px) {
    [class*="padding-sides"] {
        padding-left: 70px;
        padding-right: 70px;
    }
}

.section-visible {
    animation: 1s ease-out 0s 1 fade-in;
    animation-fill-mode: forwards;
}

.section-content {
    opacity: 0;
}

.section-content-visible {
    animation: 1s ease-out 0s 1 fade-in;
    animation-fill-mode: forwards;
}

.product-showcase {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

@media only screen and (max-width: 880px) {
    .product-showcase {
        flex-direction: column;
    }

    .product-showcase .uk-card-body p {
        text-align: left !important;
    }

    time {
        font-size: 1rem !important;
    }

    .logo-text {
        font-size: 3rem;
    }

    .logo {
        width: 80%;
    }

    #particles-canvas-1 {
    }

    .canvas-container {
        margin-top: 400px;
        width: 100%;
        height: 400px;
    }

    h1 {
        font-size: 3rem !important;
    }

    .padding-sides {
        padding-left: 5px;
        padding-right: 5px;
    }
}

.product-showcase .uk-card-title {
    color: #0e0e0e !important;
}
