@import url('https://fonts.googleapis.com/css2?family=Aladin&family=Cormorant+Garamond:wght@300&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
}

body {
    background-color: white;
    background-position-x: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    background-color: #000;
    overflow: auto;
    overflow-y: overlay;
}

html {
    scroll-behavior: smooth;
    overflow-y: auto;
}

video {
    object-fit: cover;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.header {
    background-color: rgb(251, 251, 251);
    display: flex;
    justify-content: start;
    align-items: center;
    height: 85px;
    padding: 5px 10%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.headerDiv {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    cursor: pointer;
    margin-right: auto;
}

.header .logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s;
}

.header .logo img:hover {
    transform: scale(1.2);
}

.header .nav-links {
    list-style: none;
}


.header .nav-links li {
    display: inline-block;
    padding: 0 20px;
}

.header .nav-links li:hover {
    transform: scale(1.1);
}

.header .nav-links a {
    color: black;
    text-decoration: none;
}

.header .nav-links li a:hover {
    color: coral;
}

.separ {
    padding-top: 5%;
}


.bienvenida {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    margin-top: 150px;
    padding: 20px;
}

.bienvenida h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: white !important;
    text-shadow: -1px 1px 0 #000,
        1px 1px 0 #000,
        1px -1px 0 #000,
        -1px -1px 0 #000;
    margin-bottom: 11px;
}

.bienvenida p {
    font-size: 1.2rem;
    color: white;
    text-shadow: -1px 1px 0 #000, 1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
    max-width: 600px;
    line-height: 1.5;
}

.btnCatalogo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 77px;
}

.btncat {
    width: 300px;
    height: 90px;
    background-color: #c45a1d;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    text-decoration: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
    border: 0.2px;
    padding: 15px 40px;
    box-shadow: 1px 1px 0px 0px #652f01,
        2px 2px 0px 0px #853f02,
        3px 3px 0px 0px #853f02,
        4px 4px 0px 0px #853f02,
        5px 5px 0px 0px #853f02;
    transition: all 0.3s ease;
    border-radius: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

button:active {
    box-shadow: 0px 0px 0px 0px;
    top: 5px;
    left: 5px;
}

.thankyou-text {
    font-size: 1.3rem;
    color: #fff;
    text-shadow: -1px 1px 0 #000,
        1px 1px 0 #000,
        1px -1px 0 #000,
        -1px -1px 0 #000;
}