 html {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    overflow-x: hidden;
    background-color: #5555;
}

.container {
    width: 800px;
    height: 500px;
    background-color: #0ABAB5;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    border-radius: 15px;
    text-align: center;
    padding-top: 10px;
}

.name {
    position: relative;
    top: 55px;
    z-index: 9999;
    left: 10px;
}

.boxSearch {
    position: relative;
    display: flex;
    left: 500px;
    top: -60px;
    width: 280px;
    height: 25px;
    padding: 2px;
    gap: 5px;
}

.inputCity {
    width: 250px;
    height: 30px;
    background-color: #ADEED9;
    padding-left: 5px;
    border-radius: 20px;
}

.searchCity {
    width: 30px;
    height: 30px;
    background-color: black;
    border-radius: 50%;
}

.icon {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.boxSearch .inputCity, .searchCity{
    border: none;
}

.information {
    position: relative;
    bottom: 160px;
    width: 750px;
    height: 420px;
    background-color: #56DFCF;
    margin-left: 25px;
    border-radius: 20px;
    display: flex;
    gap: 10px;
    display: flex;
    align-items: center;
    overflow-x: hidden;
}

.cuaca {
    position: relative;
    bottom: 100px;
    top: 40px;
    left: 50px;
    width: 700px;
    height: 120px;
    justify-content: space-between;
    z-index: 99999;
    display: flex;
}

.cuaca .boxIcon {
    width: 120px;
    height: 120px;
}

.cuaca .boxIcon .iconCuaca {
    position: relative;
    bottom: 100px;
    right: 25px;
    width: 280px;
    height: 280px;
    filter: drop-shadow(1px 0 0 black)
          drop-shadow(0 1px 0 black)
          drop-shadow(-1px 0 0 black)
          drop-shadow(0 -1px 0 black);
}

.cuaca .boxInformation {
    width: 420px;
    height: 120px;
}

.cuaca .boxInformation .details {
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 21px;
    border-bottom: 2px solid #FFEDF3;
    margin-bottom: 5px;
    font-weight: 900;
}


.scrollContainer {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: 100%;
    height: auto;
    padding: 10px 0;
    margin-top: 220px;
    transparant: 20%;
    &::-webkit-scrollbar {
            display: none;
    }
     scrollbar-width: none; 
    -ms-overflow-style: none; 
}

.cards {
    border-radius: 10px;
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 120px;
    height: 150px;
    margin-right: 10px;
    overflow-y: 0;
    background-color: rgb(255, 255, 255, 0.4); 
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3); 
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px); 
}

.active-card {
    background-color: rgb(255, 255, 255, 0.6);
    border: 2px solid black;
}

.card {
  filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.6));
}

.data {
    font-size: 13px;
}

.temp{
    position: relative;
    left: 10px;
    font-size: 20px;
    font-weight: 900;
    color: #FF5733 ;
}

.celcius {
    position: relative;
    height: 10px;
    font-size: 10px;
    font-weight: 900;
    bottom: 8px;
}
    

