You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
787 B
CSS
64 lines
787 B
CSS
html,
|
|
body {
|
|
font-size: 16px;
|
|
}
|
|
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: white;
|
|
}
|
|
|
|
.container {
|
|
width: 70%;
|
|
height: 100%;
|
|
display: block;
|
|
margin: 0 auto;
|
|
/* background-color: bisque; */
|
|
}
|
|
|
|
.intro {
|
|
width: 50%;
|
|
background-color: aliceblue;
|
|
margin-top: 0;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-bottom: 5%;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
.row {
|
|
width: 100%;
|
|
height: 10%;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
margin-bottom: 4%;
|
|
/* align-items: center; */
|
|
}
|
|
|
|
.row img {
|
|
}
|
|
|
|
.ani {
|
|
width: 45%;
|
|
margin: 0 auto;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
.ani img {
|
|
width: 100%;
|
|
}
|
|
.text {
|
|
width: 25%;
|
|
/* background-color: yellow; */
|
|
margin-left: 0;
|
|
}
|
|
|
|
.text p {
|
|
padding: 2% 4%;
|
|
}
|