@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&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

header{
    width: 100vw;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h1{
    color: white;
    padding-left: 2rem;
    font-size: 64px;
}

.subtitle{
    color: rgb(238, 238, 238);
    padding-left: 2rem;
    width: 650px;
    font-size: 24px;
    font-weight: 200;
}

.title-icon{
    width: 50vw;
}

.bg{
    position: absolute;
    object-fit: cover;
    width: 100vw;
    height: 90vh;
    z-index: -2;
}

.table{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
}

h2{
    margin: 1rem;
    font-size: 40px;
}

.grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.left, .right{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-content: center;
    margin: 1rem 3rem;
    text-align: center;
}

.container{
    margin: 4rem 0;
}

h3{
    color: white;
    background-color: #77B6FF;
    padding: .7rem;
    margin: 1rem 2.5rem;
    text-align: center;
    border-radius: 15px;
}

.big{
    font-size: 24px;
}

footer{
    background-color: #2c3035;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

footer p{
    color: rgb(238, 238, 238);
}