body {
    font-family: Arial, sans-serif;
    background-size: cover;
    margin: 0;
    padding: 0;
    background-image: url('osrblie.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.compass {
    position: relative;
    width: 250px;
    height: 250px;
    background-image: url('circle.png');
    background-size: cover;
    border-radius: 50%;
    margin: 0px auto;
}

.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background-image: url('arrow.png');
    background-size: cover;
    background-position: center;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: transform 0.5s ease;
}

.container {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
    width: 90%;
    margin: 10px auto;
}

.data {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.data span {
    font-weight: bold;
}

.update-info {
    font-size: 0.8em;
    text-align: center;
    color: #888;
    margin-top: 10px;
}

.stats-container {
    border-top: 1px solid #ccc;
    padding-top: 20px;
    margin-top: 20px;
}

#temperature-chart-container {
    max-width: 100%;
    margin: 00px auto;
    padding: 0px;
}

.gray-text {
    color: grey;
    font-size: 0.8em;
}

h1 {
    font-size: 180%;
}

#GrafBtn {
    display: inline-block;
    margin-left: 13px;
    background-color: rgb(227, 236, 243);
    background-image: url('graf.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    color: transparent;
    overflow: hidden;
    text-indent: -9999px;
    cursor: pointer;
}

#dir_wind {
    display: none;
}

@media (max-width: 768px) {
    h1 {
        margin: 0px auto;
        font-size: 160%;
        margin-left: 10px;
    }

    #GrafBtn {
        margin-left: 15px;
    }
}