mision.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. body {
  7. font-family: 'Quicksand', sans-serif;
  8. background-image: url(../img/fondo.jpg);
  9. }
  10. .header {
  11. background: url('https://www.perodri.es/wp-content/uploads/historia-reloj-arena.jpg') no-repeat center center;
  12. background-size: cover;
  13. color: white;
  14. padding: 100px 20px;
  15. font-size: 36px;
  16. font-weight: bold;
  17. position: relative;
  18. }
  19. .overlay {
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. right: 0;
  24. bottom: 0;
  25. background: rgba(71, 185, 179, 0.5);
  26. z-index: 1;
  27. }
  28. .title-text {
  29. position: relative;
  30. z-index: 2;
  31. display: flex;
  32. justify-content: center;
  33. }
  34. .title-text-1 {
  35. background-color: #5aa07a;
  36. width: fit-content;
  37. padding: 30px;
  38. border-radius: 23px;
  39. height: 60px;
  40. align-items: center;
  41. display: flex;
  42. justify-content: center;
  43. font-size: calc(1.5rem + 1vw);
  44. }
  45. .general-content{
  46. width: 100%;
  47. /* arriba, lados */
  48. padding: 50px 10px;
  49. display: flex;
  50. align-items: center;
  51. justify-content: center;
  52. }
  53. .content{
  54. width: 55%;
  55. display: flex;
  56. flex-direction: column;
  57. align-items: center;
  58. justify-content: center;
  59. text-align: center;
  60. }
  61. .circle-img{
  62. border-radius: 100%;
  63. display: flex;
  64. align-items: center;
  65. justify-content: center;
  66. width: 50px;
  67. height: 50px;
  68. background-color: #5aa07a;
  69. }
  70. .list li{
  71. margin-top: 10px;
  72. }