
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #FFFBDE;
    color: black;
}

a {
    text-decoration: none;
    color: white;
    font-family: "National Park", sans-serif;
    font-size: 20px;
}

ul {
    list-style: none;
    font-family: "National Park", sans-serif;
}

h1, h2 {
    font-family: "Merriweather", serif;
}

p {
    font-family: "National Park", sans-serif;
}

hr {
    border-top: 1px solid black;
}

.disclaimer{
    text-align: center;
    background-color: orangered;
    font-size: 20px;
    color: white;
    padding: 5px;

    a{
        text-decoration: underline;
    }
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 20px 10px;
    background-color: #90D1CA;
    border: 1px solid #EEE8DE;
    border-radius: 50px;
    width: 90%;
    margin: 5px auto;
}

.navigation-list {
    display: flex;
    flex-direction: row;
}

.nav-item {
    margin: 10px;
    font-weight: bold;
}

.nav-item:hover {
    color: #FFFBDE;
}

.offers-round {
    padding: 7px;
    background-color: #096B68;
    border-radius: 50px;
}

.offers-round:hover {
    background-color: #129990;
}

.hero {
    padding: 40px 10px;
    text-align: center;
    font-size: 40px;
}

.offers {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.column-img {
    height: 700px;
}

.column-icon {
    height: 30px;
    margin-right: 10px;
}

.offer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 50px 0;
}

.column {
    display: flex;
    flex-direction: column;
    width: 30%;
    /*align-items: center;*/
    justify-content: center;
}

.middle {
    img {
        border-radius: 300px;
    }
}

.rating {
    display: flex;
    flex-direction: row;
    text-align: start;
    align-items: center;

}

.place {
    padding: 8px 18px;
    margin-right: 20px;
    background-color: #90D1CA;
    border-radius: 100px;
    font-size: 25px;
    font-weight: bold;
    color: white;
}

.rating-stars {
    font-size: 40px;
    padding: 0 15px;
    border: 1px solid #096B68;
    border-radius: 50px;
    color: #096B68;
}

.name-wrapper {
    padding-top: 20px;
}

.name {
    font-size: 50px;
    padding-bottom: 40px;
}

.play-btn {
    background-color: #096B68;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 30px;
}

.play-btn:hover {
    background-color: #129990;
}

.side {
    border-top: 1px solid #E0D7C8;
    border-bottom: 1px solid #E0D7C8;
    padding: 100px 0;
    height: 500px;
}

.right {
    padding-left: 50px;

    p {
        display: flex;
        align-items: center;
        padding-bottom: 30px;
        font-size: 20px;
    }
}

.information {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 50px 10px;
}

.tip {
    width: 30%;
    background-color: #90D1CA;
    border: 1px solid #E0D7C8;
    padding: 20px;
    border-radius: 50px;
    min-height: 400px;
    font-size: 18px;

    h1 {
        padding-bottom: 20px;
    }
}

.about {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 80%;

    background-color: #90D1CA;
    border: 1px solid #E0D7C8;
    border-radius: 50px;
    margin: 30px auto;
}

.about-img {
    width: 20%;
    border-radius: 50px 0 0 50px;
}

.about-text {
    padding: 20px;

    h1 {
        font-size: 40px;
        padding-bottom: 20px;
    }

    p {
        font-size: 20px;
    }
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 20px 10px;
    background-color: #90D1CA;
    border-radius: 30px 30px 0 0;
    border: 1px solid #E0D7C8;
}

.legal-img {
    background-color: #096B68;
    padding: 5px;
    border-radius: 20px;
    height: 100px
}


.rules {
    padding: 40px;

    background: rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    border: 1px solid rgba(255, 255, 255, 0.49);
    margin: 10px;
}

.rules h1 {
    padding-bottom: 30px;
    text-align: center;
}

.rules h2 {
    padding: 20px 0 15px 0;
}

.rules p {
    padding-bottom: 10px;
}

.rules ul {
    padding-left: 20px;
    list-style: circle;
}

@media only screen and (max-width: 1500px) {
    .about-img {
        display: none;
    }
}

@media only screen and (max-width: 1100px) {
    .offer {
        flex-direction: column;
        align-items: center;
    }

    .column {
        width: 80%;
        align-items: center;
    }

    .side {
        padding: 20px 0 50px 0;
        text-align: center;
        justify-items: center;
        height: auto;
        width: 100%;
        border-bottom: none;
    }

    .right {
        border-top: none
    }

    .information {
        flex-direction: column;
    }

    .tip {
        width: 80%;
        margin-bottom: 20px;
        min-height: 200px;
    }

}

@media only screen and (max-width: 600px) {

    header {
        flex-direction: column;
    }

    .navigation-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .navigation-list li {
        margin: 15px 10px;
    }

    .column-img{
        height: 400px;
    }

    footer{
        flex-direction: column;
        text-align: center;
    }

    .logo, .footer-menu{
        margin-bottom: 20px;
    }
}