*{ margin: 0; box-sizing: border-box; } body{ background-repeat: no-repeat; background-size: cover cover; background-attachment: fixed; font-family: sans-serif; } #app-links{ display: flex; justify-content: space-around; flex-direction: row; margin-top: 30px; margin-bottom: 30px; } #app-links a{ background-color: #0e610e; padding: 15px; border-radius: 10px; color: white; font-weight: bold; text-decoration: none; transition: 0.5s; width: 15%; text-align: center; } #app-links a:hover{ background-color: #1b8c1b; transform: scale(1.1); } #app-img{ display: flex; justify-content: space-around; flex-direction: row; margin-top: 30px; margin-bottom: 30px; } #app-img img{ width: 20%; height: auto; } h1{ display: inline-block; vertical-align: middle; } #title img{ height: 50px; width: auto; vertical-align: middle; } #title{ text-align: center; padding: 10px; } #content{ width: 80%; margin: auto; background-color: white; padding-right: 40px; padding-left: 40px; } #content:first-child{ margin-top: 0; } #content:last-child{ margin-bottom: 0; } p{ padding: 10px; text-align: justify; } h2, h3{ padding-top: 10px; padding-bottom: 10px; color: #080a4d; }