website/v4/css/home.css
2023-03-05 14:35:00 +01:00

30 lines
353 B
CSS

.content {
margin-block: auto;
}
.home {
font-size: 1.2rem;
height: 100;
}
.home section {
text-align: center;
}
.home a {
color: lightblue;
cursor: pointer;
text-decoration: underline;
}
#pgp {
cursor: pointer;
}
#pgpmobile {
display: none;
}
@media (max-width: 600px) {
#pgp {
display: none;
}
#pgpmobile {
display: inline-block;
}
}