* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --main-color: #5555ff;
}

html {
    background-color: #5555ff;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

h1, p {
    font-family: Arial, Helvetica, sans-serif;
}

.navbar > ul{
    background-color: white;
    color: var(--main-color);
    font-weight: bold;
    list-style-type: none;
    display: flex;
    /* justify-content: space-between; */
}

.navbar > ul > li {
    padding: 1.4rem;
    font-size: 1.3rem;
}

.hero-section {
}

.header {
    display: grid;
    place-items: center;
    min-height: 100vh;
    text-align: center;
}


.header p {
    font-size: 1.2rem;
    font-weight: 300;
}

.header p:first-child {
    margin-bottom: 0.4rem;
}

.header h1 {
    margin-bottom: 0.4rem
}


