body {
    font-family: sans-serif;
}

#logo {
    display: block;
    width: 400px;
    margin: 0 auto 10px;
}

#content {
    display: flex;
    justify-content: center;
}

#content>div {
    flex: 1;
    width: 100%;
    padding: 10px;
}

h3 {
    display: inline-block;
    margin-top: 0;
}

#weather-container {
    max-width: 450px;
}

#weather-stream {
    width: 100%;
    height: 337px;
    margin-bottom: 10px;
}

#weather {
    width: 100%;
    height: 1050px;
    border: 1px solid black;
}

#camera-container {
    max-width: 800px;
}

#camera {
    width: 100%;
    height: 100%;
    border: none;
}

#camera-settings {
    float: right;
}

#camera-reload {
    margin-left: 5px;
}

#load-controls {
    margin-bottom: 10px;
}

#camera-controls {
    width: 198px;
    height: 550px;
    border: none;
}

@media only screen and (max-width: 700px) {
    
    #content {
        flex-direction: column;
    }
    
    #content div {
        align-self: center;
    }
    
}
