@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Ubuntu', sans-serif;
}

body {
    margin: 0;
    padding: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header {   
    z-index: 10;
    position: fixed;
    top: 0;  
    width: 100%;
    min-height: fit-content;
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(26, 26, 26, 0.5);
}

header h1 {
    margin-left: 5%;
    color: white;
}

header .menu {
    width: 40%;
    display: flex;
    justify-content: space-between;
}

header .menu a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}

header .menu-checkbox {
    margin-right: 10%;
}

main {
    z-index: 0;
    background-image: url(resources/pictures/jonathan-gallegos-3BTCTz1LOQw-unsplash.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.landing {
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    color: #ffffff;
}

.landing h1 {
    font-size: 80pt;
}

.landing h1::after {
    content: '';
    left: -15%;
    bottom: -30%;
    position: absolute;
    width: 130%;
    background-color: white;
    border-radius: 5px;
    height: 5px;
}

.landing .slogan {
    font-size: 20pt;
}

.box1 {
    z-index: 2;
    height: 100vh;
    width: 100%;
    background-color: #195973;
}