* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:system-ui, sans-serif;
}

body {
    background:#4b2e8c;
    color:white;
    padding:48px 24px;
}

h1 {
    text-align:center;
    font-size:48px;
    margin-bottom:48px;
    font-weight:600;
    color:white;
}

#opilased {
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(240px,1fr));
    gap:20px;
    max-width:1200px;
    margin:auto;
}

.opilane a {
    display:block;
    padding:24px;
    border-radius:14px;
    background:white;          
    border:2px solid #5e1eb0; 
    text-decoration:none;
    color:#3a1277;             
    font-size:18px;
    font-weight:600;
    text-align:center;
    transition:.15s;
}

.opilane a:hover {
    background:#5e1eb0;
    color:white;
}