body {
    background: mediumslateblue;
    margin: 0 10%;
}

h1 {
    color: chartreuse;
    font-family: 'Courier New', Courier, monospace;
    font-size: 3rem;

}

div.big-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    background: #222;
    padding: 0.5rem;
    border-radius: 10px;
    margin-bottom: 5rem;
}

div.weather-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    background: #222;
    border-radius: 10px;
    margin-bottom: 5rem;
}

div.small-container {
    display: inline-block;
    padding: 1rem;
    width: 100%;
}

div.title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h2 {
    color: deeppink;
    margin-top: 0;
}

p {
    color: white;
    font-family: Georgia, serif;
    margin: 0;
}

a {
    padding: 1rem;
    margin: 2rem;
    border: 4px solid turquoise;
    border-radius: 20px;
    text-decoration: none;
    min-width: 25rem;
    width: 25%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

a:hover {
    background: #333;
}

div.img-container {
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    width: 100px;
    height: 100px;
    text-align: center;
}

img, svg {
    max-width: 100px;
    max-height: 100px;
}

.backup-status {
    font-size: small;
    display: inline;
}

svg {
    height: 2rem;
}

iframe {
    padding: 1rem;
}

@media (max-width: 750px) {
    a {
        width: 90%;
        min-width: auto;
        padding: 0.5rem;
    }

    h2 {
        margin-top: 0.25rem;
    }

    img {
        max-width: 50px;
        max-height: 50px;
    }

    svg {
        width: 50px;
        height: 50px;
    }

    div.img-container {
        width: 50px;
        height: 50px;
        padding: 0.5rem;
    }
}