body{
font-family:Arial;
background:#f2f2f2;
padding:30px;
}

h1{
text-align:center;
}

.container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
width:900px;
margin:auto;
}

.box{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 3px 8px rgba(0,0,0,0.2);
}

.box b{
font-size:18px;
}

a{
text-decoration:none;
color:#0066cc;
}

a:hover{
color:red;
}
.footer {
    background-color: #050505;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}