@import url(reset.css);

* {
    box-sizing: border-box;
}

body {
    padding: 2em;
    background-color: #333;
}

div.box1 {
    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

div.box2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -1px;
    height: 100vh;
    border-right: 2px solid blue;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 2vw;
    padding: 2em;
    width: 20em;

}

p {
    font-size: 5vh;
    color: #f0f0f0;
    margin: 1px;
    padding: 0 0 0 5px;
    border-bottom: 1px solid blue;
}

@media screen and (max-width: 450px) {
    section {
        width: 15em;
        padding: 1em;
    }
}

@media screen and (min-width: 850px) {
    section {
        width: 25em;
    }
}