File size: 1,199 Bytes
e1a87c1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.dark-theme {
    background-color: #222;
    color: #fff;
}

header {
    background-color: #333;
    padding: 2px;
    text-align: center;
    display: flex;
    align-items: center;
}

h1 {
    margin: 0;
    margin-left: 10px;
}

.icon {
    width: 60px;
    height: 60px;
}

main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin: 20px;
}

button {
    background-color: #444;
    color: #fff;
    border: none;
    padding: 16px;
    cursor: pointer;
    display: grid;
    grid-template-rows: auto 1fr; /* Устанавливаем две строки для изображения и текста */
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #555;
}

button img {
    width: 135px;
    height: 135px;
}

button div {
    font-size: 16.95px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    main {
        grid-template-columns: 1fr;
    }
}