* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;

}
body {
    font-family:'Gilroy-Regular';
    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;
    width: 100vw;
    
    /* background-color: #C7E6E7; */
    background: linear-gradient(90deg, #383838 5%, #C7E6E7 45%, #C7E6E7 55%, #383838 95%);

}

.main {
    display: flex;
    flex-direction: column;
    width: 25%;

    box-shadow: 0 0 20px #383838;
    border-radius: 50px;

    font-family:'Gilroy-Regular';
}
.search{
    border: 5px solid #383838;

    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom: #C7E6E7;
    padding: 10px;

    display: flex;
    justify-content: center;
    background: linear-gradient(white, #C7E6E7);

    font-family:'Gilroy-Regular';
}
.search input {
    padding: 10px 20px;
    border-radius: 50px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;

    height: 54px;
    background-color: transparent;
    outline: 0;

    border: 5px solid #C7E6E7;
    border-right: none;

    font-size: 18px;
    font-family:'Gilroy-Regular';

}
.search input::placeholder {
    font-size: 18px;
}
.search button {
    background-color: transparent;
    height: 54px;
    width: 54px;
    border-radius: 50px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    cursor: pointer;
    border: 5px solid #C7E6E7;
    border-left: none;

}



.container {
    background-color: #383838;
    border-bottom-left-radius:50px;
    border-bottom-right-radius:50px;

    font-family:'Gilroy-Regular';

}

.weather {
    margin-left: 5px;
    margin-right: 5px;
    /* border: solid #111; */
    background-color: #C7E6E7;

    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 20px;
    padding-bottom: 50px;

    display: flex;
    flex-direction: column;
    align-items: center;

    color: rgb(56, 56, 56);
    
    font-size: 34px;


    font-family:'Gilroy-Regular';
}
.weather img {
    width: 96px;
    height: 96px;
    margin: 30px;
}
.details {
    /* border: solid #111; */
    color: #c7e6e7;

    display: flex;
    justify-content: space-around;
    align-items: center;

    font-size: 24px;
    padding: 20px;

    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
.details .col {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    /* border: solid #C7E6E7; */
    padding: 20px;
}

.details .col div {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error {
    color: #000000;
    background-color: #C7E6E7;
    border-radius: 50px;
    padding: 20px;
    width: 100%;
    font-size: 18px;
    text-align: center;
    border: 5px solid #383838;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: none;

    display: none;
}


