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.
|
|
|
body, html {
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
#main{
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo img {
|
|
|
|
transition: transform 0.5s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
#text {
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.5s ease-in-out;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 50vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main:hover .logo img {
|
|
|
|
transform: scale(1.5) rotate(360deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
#main:hover #text {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
body, html{
|
|
|
|
font-family: CustomFont, sans-serif; /* Use the custom font as the fallback */
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: CustomFont;
|
|
|
|
src: url('static/fonts/c1-kenangan.regular.otf') format('truetype');
|