@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    text-align: justify;
    scroll-behavior: smooth;
}

/*CONTACTS*/
.contacts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: fixed;
    background-color: rgb(255, 255, 255, 0.3);
}

.contacts.navbg {
    display: none;
    transition: 0.2s;
}

.contacts .left {
    margin-left: 5%;
}

.contacts .right {
    margin-right: 5%;
}

.icon img {
    height: 32px;
    width: 32px;
    margin: 8px;
}

/*NAVBAR*/
.navbar {
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100%;
    background-color: rgb(255, 255, 255, 0.2);
    transition: 0.2s;
    margin-top: 51px;
}

.navbar.navbg {
    background-color: #fff;
    box-shadow: 0px 10px 10px 5px #FFFFFF;
    margin: 0 auto;
    transition: 0.2s;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

li {
    list-style: none;
    width: 128px;
    text-align: center;
}

.navtab {
    font-size: 24px;
    text-decoration: none;
    color: #222;
}

.navtab:hover {
    text-decoration: underline 2px #222;
}

.navtab.navbg {
    color: #fff;
}

section {
    height: 100vh;
}

/*HOME*/
.home {
    background-image: url(img/bg.png);
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.home .title {
    color: #000;
    margin-left: 5%;
}

.title h1 {
    font-size: 80px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
}

.title h2 {
    font-size: 32px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
}