* {
    margin: 0; padding: 0; border: 0;
    box-sizing: border-box;
}

h1 {
    color: cadetblue;
    text-align: center;
    text-shadow: 3px 1px orangered;
    font-size: 50px;
}

p {
    color: cadetblue;
    text-align: center;
    font-size: 30px;
    text-shadow: 3px 1px #222;
}

body {
    background-color: slategray;
}

.topbar {
    height: 25vh; background-color: royalblue;
}

.hero {
    height: 35vh;
    display: flex;
    flex-direction: row;
}



.hero :nth-child(1) {
    width: 35vw; height: 35vh;
}

.hero :nth-child(2) {
    width: 35vw; height: 35vh;
    background-color: indigo;
}

.hero :nth-child(3) {
    width: 35vw; height: 35vh;
    background-color: lightseagreen;
}

.bottom {
    height: 25vh;background-color: deeppink;
}