website/css/home.css

29 lines
339 B
CSS

.content {
margin-block: auto;
}
.home {
font-size: 1.2rem;
}
.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;
}
}