| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body {
- font-family: 'Quicksand', sans-serif;
- background-image: url(../img/fondo.jpg);
- }
- .header {
- background: url('https://www.perodri.es/wp-content/uploads/historia-reloj-arena.jpg') no-repeat center center;
- background-size: cover;
- color: white;
- padding: 100px 20px;
- font-size: 36px;
- font-weight: bold;
- position: relative;
- }
- .overlay {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(71, 185, 179, 0.5);
- z-index: 1;
- }
- .title-text {
- position: relative;
- z-index: 2;
- display: flex;
- justify-content: center;
- }
- .title-text-1 {
- background-color: #5aa07a;
- width: fit-content;
- padding: 30px;
- border-radius: 23px;
- height: 60px;
- align-items: center;
- display: flex;
- justify-content: center;
- font-size: calc(1.5rem + 1vw);
- }
- .general-content{
- width: 100%;
- /* arriba, lados */
- padding: 50px 10px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .content{
- width: 55%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- text-align: center;
- }
- .circle-img{
- border-radius: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 50px;
- height: 50px;
- background-color: #5aa07a;
- }
- .list li{
- margin-top: 10px;
- }
|