@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    color: var(--dark-slate);
}

:root {
    --blue-slate: #4E80EE;
    --dark-slate: #030616;
    --mist-gray: #D2D5DA;
    --white-1: #F8FAFC;
    --white-pure: #FFFFFF;
}

body {
    width: 100vw;
    height: 100vh;
}

.wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 25% 75%;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    grid-column-start: 3;
    grid-column-end: 11;
    height: 100%;
}

header h1 {
    font-size: 2.25rem;
}

header h2 {
    font-size: 1rem;
    font-weight: 400;
}

.main-wrapper {
    display: grid;
    background-color: var(--white-1);
    width: 100%;
    grid-column-start: 1;
    grid-column-end: 13;
    grid-template-columns: repeat(12, 1fr);
    
}

main {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    grid-column-start: 3;
    grid-column-end: 11;
}
section{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
ol{
    margin-left: 1.5rem;
    line-height: 2rem;    
}
a{
    text-decoration: none;
    color: var(--blue-slate);
}