Spaces:
Running
Running
File size: 1,529 Bytes
1c0739a |
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100vh;
width: 100vw;
font-family: sans-serif;
background-color: white;
display: flex;
flex-direction: column;
}
.titre{
width: 100%;
height: 5%;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Courier New', Courier, monospace;
font-weight: bold;
font-size: 40px;
}
.robotimage{
width: 100%;
height: 25%;
display: flex;
justify-content: center;
align-items: center;
}
.robotimage img{
width: 20vw;
height: 25vh;
object-fit: contain;
}
.description{
width: 100%;
height: 5%;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Abhaya Libre', serif;
font-weight: bolder;
font-size: 20px;
}
.services{
width: 100%;
height: 50%;
display: flex;
justify-content: space-around;
align-items: center;
}
.SC ,
.QA{
display: flex;
flex-direction: column;
align-items: center;
background-color: #54DDFF;
height: 55%;
width: 35%;
border-radius: 10px;
cursor: pointer;
gap: 15%;
padding: 20px;
}
.service_titre{
font-family: 'Abhaya Libre', serif;
font-weight: 600;
font-size: 20px;
}
.SC span,
.QA span {
width: 80%;
font-family: 'Abhaya Libre', sans-serif;
font-size: 17px;
}
.QA:hover,
.SC:hover{
border: 3px solid rgb(91, 91, 253) ;
box-shadow: 0 4px 15px rgba(0, 0, 255, 0.3);
} |