
body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to right, #eef2f3, #dfe9f3);
    margin: 0;
    padding: 40px;
    text-align: center;
}

h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c3e50;
}

h2 {
    font-size: 20px;
    margin: 15px 0 10px 0;
    color: #34495e;
}

body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

h1 {
    grid-column: 1 / -1;
}

.ramka {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ramka:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

img {
    width: 100%;
    border-radius: 8px;
}

a {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease;
}

a:hover {
    background-color: #2980b9;
}
