main * {
    font-family: 'Lato', sans-serif;
}

/*--------------------------------------------------------------
# Homepage
--------------------------------------------------------------*/

.page .entry-title {
    display: none;
}

/* Header */

.site-header {
    background: url(https://playground.smscmarketing.org/wp-content/uploads/2020/11/background-texture-sand-pesok-beach-marine-fon.jpg);
    background-attachment: fixed;
    box-shadow: 0px 0px 10px 5px #aaa;
}

.site-branding {
    opacity: 0.8;
}

.site-title a{
    text-decoration: none;
    font-family: 'Permanent Marker', cursive;
    font-size: 3.2rem;
    color:#CFC0A8;
}

/* .site-title a:visited {
    color: #1F2E47;
} */

.site-title:focus a, .site-title:hover a {
    color:  #F8DEB4;
}

/* .site-title a:active {
    color:  #F0B962;
} */

.site-description {
    padding: 5px;
    margin: 10px;
    border-radius: 10px;
    font-style: italic;
    font-size: 1.5rem;
}

/* only purpose is overwriting style.css */
.main-navigation {
    display: inline;
    width: auto;
}

.menu li {
    padding: 10px;
    margin: 0 5px;
    background-color: #F0B962;
    border-radius: 5px;
    box-shadow: 3px -3px 3px 3px #F8DEB4;
}
.menu li:active {
    background-color: #344E78;
    color:  #F0B962
}

.menu-item {
    text-align: center;
    margin: 0 auto;
}

.menu-item a {
    color: #344E78;
    font-family: 'Lato', sans-serif;
}

.menu-item a:visited {
    color: #1F2E47;
}

.menu-item a:focus, .menu-item a:hover {
    color:  #6383BB;
}

.menu-item a:active {
    color:  #F0B962;
}

@media only screen and (max-width: 1024px) {
    .main-navigation {
        -ms-flex-item-align: center; align-self: center; 
    }
}

@media only screen and (max-width: 37.5em) {
    .main-navigation {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# content-weather_report.php
--------------------------------------------------------------*/

.weather-card-wrapper {
    min-width: 320px;
    max-width: 420px;
    height: 380px;
    perspective: 1000px;
}

.weather-card-wrapper:hover .weather-card {
    transform: rotateY(180deg);
}

.weather-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 1s;
    transform-style: preserve-3d;
}

.weather-card-front, .weather-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

/* set random variable default for card background gradient*/

:root {
    --random-gradient: radial-gradient(circle at 100%, #333, #333 50%, #eee 75%, #333 75%);
}

.weather-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    background: var(--random-gradient);
}

.weather-card-back .entry-title, .weather-card-back .entry-titles {
    text-align: center;
    opacity: 75%;
}

.weather-card-back .entry-titles a {
    text-decoration: none;
    color: black;
}

.weather-card-back .entry-titles a:hover {
    color: #CFC0A8 ;
    background-color: black;
}

.weather-card-sky {
    text-align: center;
    margin: 0 auto;
    font-size: 2.8rem;
    border-radius: 5px;
    opacity: 70%;
    padding: 5px;
}

.weather-card-bubbles {
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 80%;
}

.weather-card-temp {
    margin: 0 0 15px 10px;
    order: 1;
    text-align: left;
}

.weather-card-humid {
    margin: 0 10px 15px 0;
    order: 3;
    text-align: right;
}

.weather-card-temp h3, .weather-card-humid h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    opacity: 90%;
    border-radius: 8px;
    padding: 5px;
}

.weather-card-temp span, .weather-card-humid span {
    border: 2px dotted black;
    border-radius: 60px;
    padding: 10px;
    font-size: 5rem;
}

.weather-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/*--------------------------------------------------------------
# archive-weather_report.php
--------------------------------------------------------------*/

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    /* grid-template-columns: 1fr 1fr 1fr 1fr; */
    /* grid-template-columns: 320px 320px 320px 320px;
    grid-template-rows: 420px 420px; */
    column-gap: 15px;
    row-gap: 15px;

}

.grid-container .entry-content {
    margin-top: 0px;
}

.picture-headline {
    grid-column: 1/3;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.picture-headline h2 {

}