html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
body{
    background-color: black;
    font-family: "Roboto", sans-serif;
}
.container{
    position:fixed;
    display: grid;
    column-gap: 10px;
    row-gap: 10px;
    margin: 0;
    left: 0;
    background-color:white;
    width: 780px;
    height: 410px;
    top: 50px;
    overflow: hidden; /* or scroll if you want to scroll it */
    padding: 10px;
    text-align: center;
}

.bar {
    top: 0;
    position:fixed;
    display: inline;
    height: 50px;
    width: 780px;
    background-color: white;
    padding: 10px;
}

.widget {
    border: 3px solid black;
    border-radius: 8px;
    display: inline;
    margin-top: 0;
}
h1 {
    padding: 0;
    margin: 3px;
    font-size: 30px;
}

body h1 {
    margin: 0;
}

#temperature {
    font-size: 60px;
    font-weight: bold;
}
#forecast {
    font-weight: bold;
    font-size: 20px
}
#info {
    font-size: 12px;
    color: #212121;
}

#weather {
    text-align: center;
}

#welcome
{
    font-size: 30px;
    font-weight: bold;
}