@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

:root {
    --background: #0A0A0A;
    --title: #FFFFFF;
    --text: #C8C8C8;
    --primary: #21E8CC;
    --secondary: #292929;
    --accent: #FF6B6B;
    --white: #ffffff;
    --black: #000000;
}

::selection {
    background-color: var(--color-secondary);
    color: var(--color-light);
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    background-color: var(--background);
    color: var(--title);
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

p {
    color: var(--text);
}

a {
    text-decoration: none;
}

h1 {
    font-family: 'Archivo Black', sans-serif;
}

.menu-top {
    height: 70px;
}

.menu-top img {
    width: 300px;
    margin-top: 10px;
}

.capa {
    width: 100%;
    height: 120%;
    padding: 0px 10px 0px 10px;
    border-radius: 20px 20px 0px 0px;
}

.capa-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    border-radius: 20px 20px 0px 0px;
}

.capa-content h2 {
    font-size: 75px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 100%;
    text-align: center;
    width: 100%;
    max-width: 1020px;

    letter-spacing: -2px;
}

.capa-container {
    height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MENU SUSPENSO */
#nav {
    position: fixed;
    left: 0px;
    right: 0px;
    z-index: 99;
    display: flex;
    justify-content: center;
    margin: 0px auto;
    transition: bottom 0.8s ease-in-out;
    will-change: bottom;
}

#nav.bottom-menu {
    bottom: 40px;
}

#nav.top-menu {
    bottom: calc(100vh - 80px);
}

#nav .nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 4px;
    margin: 0 2px;
    border-radius: 15px;
}

#nav .nav-menu a {
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    color: #FFFFFF;
    position: relative;
    opacity: 0.8;
    transition: 0.4s ease-in-out;

    font-size: 18px;
    font-weight: 200;
}

#nav .nav-menu a:hover {
    opacity: 1;
}

#nav .nav-menu .btn-menu {
    background: #ffffff48;
    transition: 0.3s ease-in-out;
    border-radius: 10px;
}

/* METHOD */

.method {
    width: 100%;
    height: 100vh;
}