* {
    padding: 0;
    margin: 0;
    font-family: "Roboto";
}

#main {
    width: 100vw;
    height: 100vh;
    background: #3b53ed;
    background: linear-gradient(180deg,rgba(59, 83, 237, 1) 0%, rgba(18, 13, 117, 1) 100%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
}

#nav {
    grid-column: 4;
    display: flex;
    align-items: center;
}

#weatherContainer {
    grid-row: 2;
    grid-column: 2 / 3;
    place-self: center;
    font-size: 32px;
}

@media (max-width: 768px) {
    #main {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 4fr 3fr;
    }
    #weatherContainer {
        grid-row: 2;
        grid-column: 1 / 3;
    }
    #nav {
        grid-row: 1;
        grid-column: 2;
    }
}