32 lines
483 B
CSS
32 lines
483 B
CSS
|
|
@media only screen and (max-width: 600px) {
|
||
|
|
#home-banner-header {
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
footer {
|
||
|
|
margin-block-end: 0.75rem !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
#banner-home-subtitle p {
|
||
|
|
text-align: justify;
|
||
|
|
}
|
||
|
|
|
||
|
|
#notbyai {
|
||
|
|
width: 100%;
|
||
|
|
max-width: 150px;
|
||
|
|
margin: 0 auto 1.75rem auto;
|
||
|
|
transition-duration: 300ms;
|
||
|
|
}
|
||
|
|
|
||
|
|
#notbyai:hover,
|
||
|
|
#notbyai:hover::before {
|
||
|
|
background-color: transparent;
|
||
|
|
color: transparent;
|
||
|
|
transform: scale(1.1);
|
||
|
|
}
|
||
|
|
|
||
|
|
#notbyai:active {
|
||
|
|
transform: scale(0.95);
|
||
|
|
}
|