/* Core */

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    color: #fff;
    font-family: "montserrat";
    box-sizing: border-box;
}

@font-face {
    font-family: "montserrat";
    src: url('../font.ttf');
}

video {
    height: 100vh;
    width: 100%;
    object-fit: fill;
}


body{
    overflow: hidden; /* Evita desbordamientos */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 1vh 20px;
}

nav #name {
    flex: 1;
}

nav .items {
    display: flex;
    justify-content: flex-end;
}

nav .item a {
    padding: 0 20px;
}

a:hover, .active {
    color: #cda45e;
}

main {
    display: grid;
}