@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: bottom;
    background-image: url("../img/heroImg.avif");
}

header {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: 500;
    height: 100px;
    background: rgba(37, 62, 152, 0.3);
    padding-left: 10%;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 3em;
    font-weight: 100;
    height: calc(100vh - 150px);
}