website/style.css

69 lines
1.1 KiB
CSS

/* massive ebin pastejob :DDD */
.title {
color: #fa889b;
-webkit-text-fill-color: #FFC0CB;
-webkit-text-stroke: 3px;
font-size: 64px;
}
.footer {
font-size: 16px;
position: fixed;
bottom: 0px;
}
.body {
background-color:#FFF5EE
}
.main {
text-align: center;
font-family: IBM Plex Sans;
font-weight: 700
}
.button {
background-color: #FFC0CB;
border: 4px;
border-color: #fa889b;
border-style: solid;
color: rgb(48, 48, 48);
padding: 0px;
text-align: center center;
text-decoration: none;
display: inline-block;
font-size: 24px;
margin: 4px 2px;
border-radius: 24px;
font-family: IBM Plex Sans;
font-weight: 700;
cursor: pointer;
height: 70px;
width: 240px;
}
.buttons {
display: flex;
justify-content: space-between;
flex-direction: row;
max-width: 1050px;
gap: 30px;
margin: 100 auto;
}
@media screen and (max-width:1100px) {
.buttons {
flex-direction: column;
}
}
.buttonzoom {
transition: transform .1s;
margin: 0 auto;
}
.buttonzoom:hover {
transform: scale(1.2);
}