@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* ====== Variables ==== */
:root {
    --darkblue : #242A56;
    --lightblue : #749BE7;
    --bg : #EFF2FF;
    --gradient : linear-gradient(to bottom right, #2a305f,#242a5652);

    --bold : 600;
    --semi-bold : 500;
}
/* ----- GLOBAL -----*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
}
h1, h2, h3, h4 {
    font-weight: var(--bold);
    color: var(--darkblue);
}
p {
    color: #393a56;
}

/* ===== REUSABLE ===== */
.container {
    width: 80%;
    margin: auto;
}
.grid {
    display: grid;
    grid-gap: 1.5rem;
}
section {
    padding: 60px 0;
}
.btn {
    padding: 10px 12px;
    background-color: var(--lightblue);
    border: none;
    color: white;
    border-radius: 5px;
}
.btn:hover, .ctn:hover.ctn a {
    color: var(--lightblue);
    background-color: white;
}

/* ----- Header ----- */
.header {
    background-image: url('images/header-bg.png');
    width: 100vw;
    height: 100vh;
    background-size: cover;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.nav-item:hover.nav-item a {
    color: var(--lightblue);
}
.logo img {
    width: 300px;
    color: white;
}
ul {
    display: flex;
    align-items: center;
}
ul li a {
    color: white;
    margin: 0 20px;
}
.header-content {
    width: 50%;
    margin-top: 100px;
    color: whitesmoke;
}
.header-content h1, .header-content h3 {
    color: whitesmoke;
    margin: 10px auto;
}
.header-content h1 {
    font-size: 3rem;
}
.header-content p {
    margin-bottom: 30px;
    color: whitesmoke;
}