:root { --background-color: white; --text-color: black; } body { background-color: var(--background-color); color: var(--text-color); width: 350px; padding-left: 10px; padding-right: 10px; font-family: 'Inter', sans-serif; font-size: 12pt; } #hostname { font-size: 14pt; font-weight: 400; text-align: center; } #display-enabled { display: grid; grid-template-columns: 1fr 2fr; } #display-enabled img { width: 50%; justify-self: center; align-self: center; cursor: pointer; } #display-enabled h2 { font-size: 14pt; font-weight: 400; margin-right: 15%; } #display-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; } #display-features img { width: 50%; } #display-features p { margin-top: 0; } button { display: flex; justify-content: center; align-items: center; border: 0; border-radius: 30px; width: 100%; font-size: 12pt; padding: 6px; margin-top: 6px; margin-bottom: 6px; gap: 8px; text-align: center; cursor: pointer; } button:hover { transition-duration: 0.3s; } ul { text-align: right; list-style: none; } a{ color: var(--text-color); text-decoration: none; transition-duration: 0.3s; } a:hover{ text-decoration: underline; }