.title {
    padding-top: 10px;
    background-image: url("resource/tytul.png");
    background-repeat: no-repeat;
    width: 70%;
    height: 100px;
    background-size: 70% 100%;
    margin-inline: auto;
    background-position: 50%;
}

body {
    height: 100%;
    background-image: url("resource/plaza.jpg");
    background-size: cover;
    backdrop-filter: brightness(90%);
    margin: 0px;
    color: white;
}

.top-bar {
    padding-bottom: 20px;
}

.under-title {
    margin-top: 10px;
    width: fit-content;
    margin-inline: auto;
}

.under-title-text {
    text-align: center;
    font: 20px "Flatlion Libre Baskerville";
    color: rgba(41, 41, 41, 80%);
    margin: 20px;
}

.under-place-text {
    text-align: center;
    font: 36px "RoxboroughCF";
    color: rgba(228, 228, 228, 0.9);
    text-shadow: 2px 2px 10px black;
}

.line {
    margin: 1px;
    border-color: rgb(41, 41, 41);
}

.places {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: calc(90% - 160px);
}

.place-img {
    border-radius: 150px;
    width: 300px;
    height: 300px;
    background-color: black;
    box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.3);
}

.place-img:hover {
    margin-bottom: 40px;
    transition: 0.2s;
}

@media (max-width: 1200px) {
    .title {
        background-size: 90% 100%;
    }
}

@media (max-width: 900px) {
    .places {
        flex-direction: column;
        height: fit-content;
    }
    .place-img:hover {
        margin-bottom: 0px;
    }
    .under-place-text {
        margin-bottom: 40px;
    }
    .title {
        height: 80px;
        width: 85%;
    }
    body {
        height: fit-content;
    }
}

@media (max-width: 500px) {
    .title {
        height: 60px;
    }
}
