File size: 366 Bytes
973b24f
 
b99d253
973b24f
 
 
 
 
b99d253
 
973b24f
 
b99d253
 
973b24f
 
b99d253
 
973b24f
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* Custom styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
}

img {
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}