home.css 1.49 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    width:100vw;
    height: 100vh;
    background: linear-gradient(100deg, rgba(20, 99, 155, 0.25), rgba(30, 148, 227, 0.25));
    background-image: url(imagenes/descarga.svg);
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: "bold";
    color: white;
}
.contenedor{
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main{
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    /* background-color: aqua; */
}
.letra{
    width: 60%;
    height: 40%;
    margin-left: 10px;
    font-weight: bold;
    color: aliceblue;
}
.letra h3{
Angel Zarate committed
38
    
39 40 41 42 43 44 45 46 47 48 49 50
}
.imagen{
    width: 40%;
    /* background-color: crimson; */
  
}


.contenido a img{
    width: 100%;
    display: flex;
    justify-content: flex-end;
Angel Zarate committed
51
    
52 53 54 55 56 57
}
.link{
    width: 90%;
    height: 80%;
    text-decoration: none;
    display: flex;
Angel Zarate committed
58
    
59 60 61 62 63 64
    justify-content: flex-end;
    align-items: center;
}
ul {
    width: 70%;
    height: 70%;
Angel Zarate committed
65
}
66 67 68 69 70 71 72 73

div.link ul li a {
   /*  float: right 100px;
    color: #fff;
    font-size: larger; */
    text-decoration: none;
    color: aliceblue;
  /*   padding: 10px; */
Angel Zarate committed
74 75
}

76 77 78 79 80 81
.link ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
}
Angel Zarate committed
82

83 84 85 86
.imagen img{
    width: 100%;
    height:100%;
   
Angel Zarate committed
87 88
}

89 90 91 92 93 94 95
  
.cta-main {
    width: 200px;
    font-family: monospace;
    background-color: yellow;
    border: none;
}