@import "reset.css";

html {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

body {
    padding: 0;
    overflow-x: hidden;
    width:100vw;
    height:100vh;
    margin:0;
}

main {
    display: grid;
    width:100%;
    height:100%;
    grid-template-columns: 1fr 1fr 1fr;
}

main > section {
    max-width: calc(100vw / 3);
    max-height: 50vh;
}

main > section:nth-of-type(1),  main > section:nth-of-type(2), main > section:nth-of-type(3){
    border-bottom: 1px dashed black;
}

main > section:nth-of-type(1), main > section:nth-of-type(2), main > section:nth-of-type(4), main > section:nth-of-type(5) {
    border-right: 1px dashed black;
}