@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

html{
    font-size: 24px;
}
body{
    font-family: 'Open Sans', sans-serif;
    color: #fff;

}
.container{
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.upper{
    display: flex;
    background: linear-gradient(90deg, #c8002b, #130004);
    flex: 5;
    flex-direction: column;
}
.header{
    display: flex;
    flex: 3;
    padding: 1rem;
}
.logo{
    flex: 1;
}
.promotion{
    flex: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
}
.promotion .title{
    font-size: 1.8rem;
    font-weight: 600;
}

.date-time{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.8;
    font-weight: 600;
}

.image-gallery{
    display: flex;
    flex: 5;
    background: #ddd;
}
.middle{
    flex: 3;
    background: linear-gradient(90deg, #040405, #4c5764);
}
.time-zones{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    font-size: 1.2rem;
}
.top-left{
    border-top: 16vw solid #fff;
    border-right: 19vw solid transparent;
    z-index: 2;
    width: 0;
    height: 0;
    position: absolute;
    
}
.triangle-header{
    position: absolute;
    z-index: 3;
    color: #000;
    top: 3vw;
    left: 2vw;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.4rem;
    line-height: 1.2;
}
.time-zones div{
    display: flex;
    flex-direction: column;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
}
canvas{
    width: 180px !important;
}
.lower{
    display: flex;
    flex: 4;
}
.rates{
    display: flex;
    flex: 3;
    flex-direction: column;
}
.room-rates{
    flex: 1;
    background: linear-gradient(90deg, #4c5662, #060708);
    display: flex;
    flex-direction: column;
}
.room-rates .title{
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
}
.room-rates-content{
    flex: 4;
    display: flex;
}
.room-item{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    margin: 0.2rem;
}
.room-title{
    line-height: 1.2;
    font-weight: 600;
}
.room-price{
    font-weight: 600;
    line-height: 1.4;
}
.exchange-rates{
    flex: 1;
    background: linear-gradient(90deg, #060708, #4c5662);
    display: flex;
    flex-direction: column;
}
.exchange-rates .title{
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
}
.exchange-rates-content{
    flex: 4;
    display: flex;
}
.exchange-item{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
.exchange-title{
    line-height: 1.4;
    font-weight: 600;
}
.exchange-amount{
    font-weight: 600;
    line-height: 2;
}

.forecasts{
    flex: 1;
    background: linear-gradient(90deg, #4c5662, #060708);
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.forecast-item{
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 2fr;
    padding: 0.3rem;
    background: linear-gradient(125deg, #3f5370, #1d2531);
    border-radius: 0.6rem;
    margin: 0.1rem;

}
.weather-desc{
    font-size: 0.8rem;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
}
.weather-date{
    font-size: 0.5rem;
    text-align: end;
}
.weather-temp{
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;

}
.weather-city-name{
    font-size: 0.9rem;
    font-weight: 600;
}

