@import url('variables.css');

body {
    background-color: var(--darker-black);
    width: 100vw;
    height: 100vh;
    margin: auto
}

.flex {
    display: flex;
}

.flex-h {
    flex-direction: row;
}

.flex-v {
    flex-direction: column;
}

.test1 {
    background-color: var(--red);
    width: 100%;
    height: 150px;
}

.test2 {
    background-color: var(--green);
    width: 100%;
    height: 150px;
}

.test3 {
    background-color: var(--blue);
    width: 100%;
    height: 150px;
}