project.css 515 B

12345678910111213141516171819202122232425262728
  1. .projects_page {
  2. height: 120vw;
  3. background-color: #dcb495;
  4. }
  5. .project_header {
  6. height: 25vw;
  7. width: 100%;
  8. display: flex;
  9. align-items: center;
  10. justify-content: space-around;
  11. }
  12. .project_logo {
  13. margin-top: 30px;
  14. width: 15vw;
  15. height: 15vw;
  16. border: 0.2vw solid #ffffff;
  17. border-radius: 2vw;
  18. }
  19. .brand_block {
  20. height: 25vw;
  21. display: flex;
  22. flex-direction: column;
  23. align-items: center;
  24. justify-content: space-between;
  25. }
  26. .name_project {
  27. font-size: 3vw;
  28. }