/* ========== Fonts code to be added here ========== */
:root {
  --white: #ffff;
  --darkblue: #022a45;
  --blue: #2b536f;
  --lightblue: #bad2e3;
  --hartlandred: #c90505;
}

.poppins {
    font-family: "Poppins", sans-serif;
    font-style: normal;
}
/* ========== End of fonts ========== */

/* ========== Global Code ========== */
html{
    box-sizing: border-box;
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: "Poppins", Helvetica, Arial, sans-serif;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    width: 100dvw;
    min-height: 50svh;
}