You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
995 B
65 lines
995 B
*
|
|
body {
|
|
margin: 0;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.blue-box {
|
|
width: 100%;
|
|
height: 300px;
|
|
background-color: #8492e0;
|
|
border-bottom-left-radius: 20px;
|
|
border-bottom-right-radius: 20px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
font-size: 2em;
|
|
}
|
|
|
|
.main-div {
|
|
width: 80%;
|
|
max-width: 800px;
|
|
margin-top: 50px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.button-div {
|
|
width: 30%;
|
|
height: 100px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: 20px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.button-div:hover {
|
|
background-color: #f2f2f2;
|
|
}
|
|
|
|
.icon {
|
|
margin-right: 10px;
|
|
font-size: 2em;
|
|
}
|
|
|
|
.button-text {
|
|
font-size: 1.2em;
|
|
}
|
|
.button-div a{
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|