body {
    margin:auto;
    background-color: #252525;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 80%;
    display: flex;    
    height: 100vh; 
    justify-content: center;
    align-items: center; 
}

.container {
    background-color: rgb(0, 0, 0);
    padding: 30px;
    border-radius: 30px;
    width: 80%;
}

h2 {
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 30px;
}

input[type="text"] {
    width: 30%;
    padding: 10px;
    margin-left: 20px;
    border: 1px solid #707070;
    background-color: #000000;
    border-radius: 12px;
    font-size: 14px;
    color: white;
}

input[type="submit"] {
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.weather-header {
    color: rgb(255, 255, 255);
    padding: 20px;
    font-size: 36px;
    margin-top: 20px;
    margin-bottom: 0;
    font-weight: 100;
}

.weather-content {
    background-color: rgb(0, 0, 0);
    padding: 20px;
    padding-top: 5px;
    align-items: start; 
    color: white;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 10px;
}

.left-column {
    font-size: 24px;
}

.right-column {
    font-size: 14px;
    padding: 5px;
    text-align: center;
}

.daily-header {
    text-align: left;
    font-size: 18px;
    font-weight: 100;
    padding-bottom: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    text-align: center;
    padding: 5px;
}

th:first-child { width: 33%; }
th:nth-child(2) { width: 33%; }
th:nth-child(3) { width: 34%; }

.footer {
    font-size: 14px;
    color: #707070;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
