* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    width: 100%;
    min-height: 100svh;
    overflow-x: hidden;
    scroll-behavior: smooth;
    opacity: 0;
    animation: opacityAnim 1s forwards ease-in-out;
    animation-delay: 0.2s;
    transition: 0.3s opacity;
}
body.bg-black {
    background-color: black;
    color: white;
}
body.lock {
    height: 100svh;
    overflow: hidden;
}
::selection {
    background-color: white;
    color: black;
}
::-webkit-scrollbar {
    width: 0;
}
.space {
    margin: auto;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}
.section-container {
    width: 70%;
    margin: auto;
}
hr {
    border: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 20px;
    margin: auto;
}
hr.hr-secondary {
    background-color: rgb(255,255,255,0.5);
    animation: hundredWidth linear forwards;
    animation-timeline: view();
    animation-range-start: 100px;
    animation-range-end: 600px;
    width: 0;
}
a {
    color: white;
    text-decoration: underline;
    user-select: none;
}
a:hover {
    text-decoration: none;
}
.notification {
    position: fixed;
    z-index: 9999999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    transition: 0.7s opacity;
    pointer-events: none;
}
.notification.active {
    opacity: 1;
    pointer-events: all;
}
.notification-container {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 70%;
    transition: 0.8s top;
}
.notification.active .notification-container {
    top: 50%;
}
.notification-content {
    font-size: 48px;
    width: 80%;
}
.notification #closeNotification {
    display: flex;
    align-items: center;
    justify-self: center;
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    border: 0;
    outline: 0;
    padding: 30px;
    cursor: pointer;
}
.notification #closeNotification svg {
    width: 58px;
    height: 58px;
    color: white;
    scale: 0;
    transition: 0.8s scale;
}
.notification.active #closeNotification svg {
    scale: 1;
}
.subTitle {
    font-size: 2.375rem;
    font-weight: 100;
    padding-bottom: 3rem;
}
.bigTitle {
    font-size: 4rem;
    font-weight: 100;
}
.bigParagraph {
    font-size: 3rem;
    font-weight: 100;
}
nav {
    width: 100%;
    background-color: transparent;
    z-index: 999999;
    position: fixed;
    top: 0;
    left: 0;
    transition: 0.2s background-color;
    user-select: none;
    animation: navAnim 1s forwards ease-in-out;
    padding-top: 20px;
    padding-bottom: 12px;
    display: flex;
    justify-content: center;
}
nav.relative {
    position: relative;
}
nav.relative .menu-box {
    background-color: black;
}
@keyframes navAnim {
    0% {
        padding-top: 20px;
    }
    100% {
        padding-top: 12px;
    }
}
.nav-container {
    display: flex;
    align-items: center;
    gap: 140px;
    width: 70%;
}
.nav-container .menu-side {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.nav-container .nav-logo {
    width: 150px;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.nav-container .nav-logo img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.nav-menus {
    display: flex;
    align-items: center;
    gap: 25px;
}
.main-menu-btn {
    background-color: transparent;
    color: white;
    border: 0;
    outline: 0;
    position: relative;
    font-size: 18px;
    cursor: pointer;
}
.main-menu-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    border-radius: 20px;
    background-color: white;
    transition: 0.3s width;
}
.main-menu-btn.active::after,
.main-menu-btn:hover:after {
    width: 100%;
}
.main-menu-btn a {
    text-decoration: none;
}
.menu-box {
    position: absolute;
    top: 30px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(10px) scale(1.2);
    pointer-events: none;
    transition: 0.3s opacity, 0.3s transform, 0.2s background-color;
    padding: 3px 8px;
    border-radius: 0 0 10px 10px;
}
.main-menu-btn.active .menu-box {
    opacity: 1;
    transform: translateY(0) scale(1.05);
    pointer-events: all;
}
nav .menu-btn {
    color: white;
    text-decoration: none;
    text-align: start;
    display: flex;
    align-items: center;
    padding: 5px 0;
}
nav .menu-btn span {
    position: relative;
}
nav .menu-btn:not(.main-btn) span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    border-radius: 20px;
    transition: 0.3s width;
}
nav .menu-btn:hover span::after {
    width: 100%;
}
.nav-menus .main-menu-btn p {
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-menus .main-menu-btn p svg {
    width: 18px;
    height: 18px;
    transition: 0.35s transform;
}
.nav-menus .main-menu-btn.active p svg {
    transform: translateY(-2px) rotate(-180deg);
}
nav.active .menu-box {
    background-color: black;
}
.main-btn {
    background-color: transparent;
    color: white;
    border: 0;
    outline: 0;
    position: relative;
    font-size: 18px;
    padding: 7px 10px !important;
    border: 2px solid white;
    border-radius: 15px;
    transition: 0.25s background-color, 0.25s color, 0.25s border, 0.25s scale;
    box-shadow: 0 0 3px white;
    user-select: none;
    text-decoration: none;
    display: block;
    width: fit-content;
}
.main-btn:hover {
    border: 2px solid transparent;
    color: black;
    background-color: white;
}
.main-btn:active {
    scale: 0.95;
}
.nav-menus .menu-btn svg {
    width: 24px;
    height: 24px;
}
.bigMainBtn {
    width: 100%;
    padding: 30px 20px;
    display: block;
    font-size: 24px;
    color: white;
    background-color: transparent;
    border-radius: 10px;
    border: 1px solid white;
    text-decoration: none;
    text-align: center;
    transition: 0.35s background-color, 0.35s color, 0.25s border-radius;
}
.bigMainBtn:hover {
    background-color: white;
    color: black;
}
.bigMainBtn:active {
    border-radius: 30px;
}
.blur-load {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111;
}
.blur-load img {
    opacity: 0;
    transition: 0.25s opacity ease-in-out;
    width: 100%;
    height: 100%;
}
.blur-load.loaded img {
    opacity: 1;
}
footer {
    user-select: none;
}
.footer-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-top {
    padding: 4svh 0;
}
.footer-bottom {
    position: relative;
    padding: 4svh 0;
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.footer-policy {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.footer-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 30px;
    background-color: rgb(255,255,255,0.5);
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-menu-list {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: start;
}
.footer-logo {
    width: 130px;
}
.footer-logo img {
    width: 100%;
    height: 100%;
}
.footer-link {
    text-decoration: none;
    background-color: transparent;
    border: 0;
    outline: 0;
    color: white;
    display: flex;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
}
.footer-link svg {
    width: 25px;
    height: 25px;
}
.footer-link:hover {
    text-decoration: underline;
}
footer .copyright {
    font-size: 18px;
    padding-bottom: 1.5rem;
}
.footer-signature {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-signature .signature {
    transform: translateY(-30px);
}
.footer-signature .signature .creator {
    position: relative;
    text-decoration: none;
    transition: 0.25s;
    font-weight: bold;
}
.footer-signature .signature .creator::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 10px;
    height: 2px;
    width: 0;
    transition: 0.25s;
}
.footer-signature .signature .creator:hover:after {
    width: 100%;
}
.footer-signature .signature .creator:active {
    letter-spacing: 1px;
}
@keyframes opacityAnim {
    to {
        opacity: 1;
    }
}
@keyframes fadein {
    to {
        scale: 1;
        opacity: 1;
    }
}
@keyframes fadein-noopacity {
    to {
        scale: 1;
    }
}
@keyframes cometo-screen {
    to {
        transform: translate(0);
        opacity: 1;
        scale: 1;
    }
}
@keyframes hundredWidth {
    to {
        width: 100%;
    }
}