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

body {
    font-family: 'Roboto', sans-serif;
}

nav {
    background: linear-gradient(to right, #1363DF, #1C3879);
    color: white;
    text-align: center;
    height: 100px;
    margin-top: 10px;
    margin-left: 30px;
    margin-right: 30px;
    padding-top: 6px;
    font-size: 3rem;
}

main {
    margin-top: 30px;
    display: flex;
}

/* Area for the previous search buttons */
.city-search {
    width: 500px;
}

.search-container {
    width: 500px;
    margin-left: 30px;
    margin-top: -15px;
}

h1, h2 {
    font-weight: bold;
    font-size: 2rem;
}

input {
    width: 350px;
    height: 50px;
    border-radius: 4px;    
}

button {
    background: #3B9AE1;
    width: 350px;
    height: 40px;
    margin-top: 20px;
    font-size: 1.1rem;
    color: #C1EFFF;
    border:  none;
    border-radius: 4px;
} 

.weather-container {
    width: 1080px;
    margin-left: 20px;
}

.weather-area {
    height: 300px;   
    border: 1px solid black;
    padding-left: 7px;
    padding-top: 10px;
}

.five-days {
    display: flex;
    gap: 20px;   
}

h3 {
    margin-top:10px;
}

.day {
    width: 200px;
    height: 220px;
    background: #2B4865;
    color: white;
    padding-top: 5px;
    padding-left: 5px;
}

ul {
    list-style-type: none;
    font-size: 1.3rem;
    line-height: 37px;
}
