2022-04-07 16:03:53 +02:00
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
2022-04-07 18:14:55 +02:00
|
|
|
background-image: url("./images/background.jpg");
|
2022-04-07 16:03:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#title {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mobile-title {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.swiper {
|
|
|
|
width: 500px;
|
|
|
|
height: 400px;
|
|
|
|
margin-top: 20vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.photo-container {
|
|
|
|
width: 500px;
|
|
|
|
height: 400px;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
|
|
|
2022-04-07 17:37:13 +02:00
|
|
|
body {
|
2022-04-07 18:14:55 +02:00
|
|
|
background-image: url("./images/mobile-background.jpg");
|
2022-04-07 17:37:13 +02:00
|
|
|
}
|
|
|
|
|
2022-04-07 16:03:53 +02:00
|
|
|
#title {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mobile-title {
|
2022-04-07 17:37:13 +02:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.photo-container {
|
|
|
|
width: 300px;
|
|
|
|
height: 300px;
|
|
|
|
margin-left: 15vw;
|
2022-04-07 16:03:53 +02:00
|
|
|
}
|
|
|
|
}
|