@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;600;700&display=swap');

/* font-family: 'Montserrat', sans-serif; */
/* font-family: 'Comfortaa', cursive; */


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

.menuWrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.menuWrap .toggle {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000;
    cursor: pointer;
    width: 60px;
    height: 60px;
    opacity: 0;
}

/* Hamburger box */
.menuWrap .hamburger {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 60px;
    height: 60px;
    padding: 1rem;
    background-image: linear-gradient(to right, rgb(5,157, 152), rgb(35, 240, 199), rgb(11, 209, 254), rgb(66, 242, 247));
    display: flex;
    justify-content: center;
    align-items: center;
}

.menuWrap .hamburger > div {
    position: relative;
    width: 100%;
    height: 3px;
    background: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.menuWrap .hamburger > div::before,
.menuWrap .hamburger > div::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: inherit;
    z-index: 1000;
}

.menuWrap .hamburger > div::before {
    top: -10px;
}

.menuWrap .hamburger > div::after {
    top: 10px;
}

.menuWrap .toggle:checked + .hamburger > div {
    transform: rotate(135deg);
}

.menuWrap .toggle:checked + .hamburger > div::before,
.menuWrap .toggle:checked + .hamburger > div::after {
    top: 0;
    transform: rotate(90deg);
}

.menuWrap .toggle:checked:hover + .hamburger > div {
    transform: rotate(225deg);
}

.menuWrap .toggle:checked ~ .menu {
    visibility: visible;
}

.menuWrap .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

.menuWrap .menu > div {
    background: rgba(49, 49, 49, 0.8);
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menuWrap .menu .links {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
}

.links ul li {
    list-style-type: none;
    font-size: 3.5em;
    padding: 2em;
}

.links ul li a {
    text-decoration: none;
    color: whitesmoke;
    font-weight: bold;
    text-shadow: 3px 3px 5px rgb(66, 242, 247);
}

/* Hero section */
.hero {
    background-image: url(../Images/Style\ 3Buscard\ copy.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    margin: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

h1 {
    color: rgb(5, 157, 152);
    text-shadow: 3px 3px 5px rgb(129, 147, 150);
    font-size: 8em;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin: 30px;
    text-align: left;
}