header { display: flex; justify-content: space-between; align-items: center; padding: 0 20px 0 20px; background-color: #FF8444; height: 80px; } body{ margin: 0; padding: 0; font-family: sans-serif; background: #34495e; } .header-left { display: flex; align-items: center; } .header-left img { width: 50px; height: 50px; } .header-center h2 { margin: 0; } .submit-button { background-color: #34495e; color: white; padding: 12px 20px; border: none; border-radius: 4px; cursor: pointer; float: right; font-size: 16px; } #teams-section { display: flex; flex-direction: column; padding: 20px; background-color: #f2f2f2; border-radius: 0 0 10px 10px; box-shadow: 5px 5px #1B1B1B; } #teams-section h2 { text-align: center; font-size: 24px; margin-top: 0; margin-bottom: 5px; } #schemas-section { padding: 20px; background-color: #f2f2f2; border-radius: 10px; margin-top: 20px; box-shadow: 5px 5px #1B1B1B; } #schemas-section h2 { text-align: center; font-size: 24px; margin-bottom: 20px; } .teams-container { display: flex; flex-wrap: wrap; justify-content: center; } #teams-list { display: flex; flex-direction: row; overflow: hidden; } .team-item { padding: 15px 15px 5px; display: flex; flex-direction: column; align-items: center; height: 100%; min-width: 150px; margin: 10px; background-color: #ccc; border-radius: 15px; overflow: hidden; } .team-item .team-name { margin-bottom: 3px; } /* .team-item { display: block; width: calc(100% * (1/4) - 10px - 1px); margin: 10px; text-align: center; width: 200px; height: 200px; float: left; margin: 10px; } */ .team-name { font-size: 18px; margin-top: 10px; } .team-item img { border-radius: 15px; width: 100%; height: auto; max-width: 150px; max-height: 150px; }