@import url('https://fonts.cdnfonts.com/css/modern-typewriter'); * { box-sizing: border-box; } body { display: flex; flex-direction: column; font-family: 'MODERN TYPEWRITER', sans-serif; font-size: medium; color: black; align-items: center; justify-content: center; height: 100%; background-color: rgb(215, 91, 0); } h1 { font-size: 50px; font-weight: 900; } .container { margin: 5vh 0vh; justify-content: center; width: 90vw; box-shadow: 1px 1px 100px black; border: none; padding: 5vw; } div.logo { position: absolute; transform: rotate(-25deg); /*border-radius: 50%; box-shadow: 2px 2px 10px black;*/ } .logo>img { height: 9vw; } .row { display: flex; flex-direction: row; width: 100%; border-bottom: 1px solid black; justify-content: center; align-items: stretch; background-position: absolute; } .banner { padding: 3vw; display: flex; flex-direction: column; align-items: center; } .col { display: flex; flex-direction: column; align-items: center; padding: 20px; margin: 50px 0px; width: 100%; justify-content: center; } .col-left { border-right: 1px solid black; padding-right: 5vw; } .col-right { padding-left: 5vw; }