/* General Styles */

h1 {
    align-self: center;
}


i {
    font-size: 32px;
}

/* Header */

.weather-header {
    background-image: url("https://media.tenor.com/beBOF70zdqQAAAAd/clouds-cloud.gif");
    background-size: cover;
    background-color: blueviolet;
    color: black;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

/* Search Bar */

#side-bar {
    padding: 30px;
    margin: 20px;
    background-color: rgb(190, 118, 226);
    border-radius: 10px;
    border: none;
    box-shadow: 5px 5px 20px rgb(240, 140, 238);
}

#search-input {
    width: 100%;
    border-radius: 5px;
    border: none;
    padding: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;

}

/* Buttons Styles */

button {
    border-radius: 10px !important;
    background-color: rgb(98, 90, 106) !important;
    color:aliceblue !important;
    font-weight: 300 !important;
    padding: 20px;
    margin-bottom: 10px !important;
    border-color: transparent;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

button:hover {
    box-shadow: 5px 5px 20px rgb(240, 140, 238);
}

#clear-button {
    border-radius: 10px !important;
    background-color: rgb(98, 90, 106) !important;
    color:aliceblue !important;
    font-weight: 300 !important;
    margin-left: 20px !important;
    margin-right: 10px !important;
    border-color: transparent; 
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
}

#search-button {
    border-radius: 10px !important;
    background-color: rgb(98, 90, 106) !important;
    color:aliceblue !important;
    font-weight: 300 !important;
    border-color: transparent; 
    margin-right: 30px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
}

#modal-button {
    padding: 30px;
    width: 30px !important;
    margin: 5px;
    height: 30px;
    align-self: flex-end;
    align-items: center;
    
}

#forecast {
    border: none;
    padding: 10px;
    justify-content: space-between;
    
}


#today {
    padding: 30px;
    margin: 10px;
    background-color: rgb(201, 182, 211);
    border-radius: 10px;
    border: none;
    box-shadow: 5px 5px 20px rgb(240, 140, 238);
}

.card-body {
    
    background-color: rgb(68, 64, 70);
    border-radius: 10px;
    border: none;
    margin: 10px;
    color: aliceblue;
    box-shadow: 5px 5px 20px rgb(240, 140, 238);
}
