/** * Copyright (c) 2017-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** * CSS files with the .module.css suffix will be treated as CSS modules * and scoped locally. */ .heroBanner { text-align: left; position: relative; overflow: hidden; min-height: 40vh; } .heroLeft { position: absolute; top: 0; bottom: 0; left: 0; right: 50%; display: flex; align-items: center; justify-content: center; } .heroRight { margin-left: 50%; margin-top: 7vh; } .buttonContainer { margin-bottom: 7vh; text-align: center; } .buttons { display: flex; align-items: center; } .buttons > * { margin: 10px 0; } .features { display: flex; align-items: center; padding: 3rem 0px; width: 100%; } .feature { padding: 0 20px; } .featureImage { height: 200px; width: 200px; } .feature h3 { text-transform: capitalize; font-size: 1.7rem; color: #276475; line-height: 1.2; white-space: nowrap; } .imageLogo { margin-top: 5vh; width: 40vw; margin: 5vh auto; max-width: 450px; min-width: 300px; } .getStarted { margin-right: 20px; } @media screen and (max-width: 768px) { .heroBanner { text-align: center; } .heroLeft { position: relative; } .heroRight { margin-left: 0; margin-top: -15px; } .buttons { flex-direction: column; } }