/* IMPORT FONTS */
@import url('https://fonts.googleapis.com/css2?family=Poppins: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=Rubik:ital,wght@0,300..900;1,300..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root{
    --light1: #ededed;
    --dark1: #111;
    --other1: #00008b;

    --font1: 'Poppins';
    --font2: 'Rubik';
    --font3: 'Ubuntu';
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    /* border: 1.5px solid red; */
}

html{
    font-size: 62.5%;
}

body{
    font-family: var(--font1), serif;
    line-height: 1.5;
}

h2{
    font-family: var(--font2);
    font-size: 4rem;
    font-weight: 600;
}

h3{
    font-size: 1.3rem;
}

p{
    font-size: 1.4rem;
}

a{
    color: var(--dark1);
    transition: all .3s ease;
}

img{
    max-width: 100%;
    height: auto;
}
video{
	width: 100%;
	height: 50rem;
	background: #111;
	padding: 3rem;
}

section{
    width: 100%;
    padding: 5rem 3rem;
}

.title-header{
    width: 100%;
    color: var(--light1);
    background: url(../imgs/title-header.jpg), #555;
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding: 5.5rem 1rem;
}

.title-header h2{
    font-family: var(--font3);
    font-size: 3.5rem;
}