*, *::before, *::after {
    font-family: 'Roboto', sans-serif;
}
* {
    box-sizing: border-box;
    margin: 0;
}
.container {
    max-width: 1000px;
    width: 100%;
    margin: auto;
}
/*Banner ////////////////////*/
.banner {
    background-image: url(/headline_banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 30vh;
    border-radius: 0 0 25px 25px;  
}
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;  
}
.hero-h1 {
    color: white;
    text-transform: uppercase;
    font-size: 4vh;
}
/* Navigation///////////////// */
nav {   
    padding: 1em;
    display: flex;
    justify-content: space-between;
}
.logo img {
   height: 35px;
   width: 50px;
}
.menu {
    display: flex;
}

.menu ul {
    display: flex;
    list-style-type: none;
}
.menu li a {
    font-family: 'Roboto', sans-serif;
    list-style: none;
    padding-left: 2em;
    font-weight: bold;
    color: white;
}
/* Text/////////////////// */
h1 {
    text-align: center;
    padding: 1em;
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
}
h2 {
    padding: 1rem 0;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
}
p {
    padding: 1em 0;
    font-family: "Roboto", sans-serif;
}
a {
    text-decoration: none;
    color: darkgray;
}
/*Homepage ////////////////////*/
.homepage-titles {
    margin-top: 1em;
    padding: 1em;
    border: 1px solid black;
    background-color: lightgray;
    border-radius: 25px;
}
.bold {
    font-weight: bold;
}
/*homepage card//////////////////*/
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.card {
    --padding: 1rem;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
    border-radius: .25rem;
    overflow: hidden;
}
.card-header {
    font-size: 1.5rem;
    padding: var(--padding);
    padding-bottom: 0;
    margin-bottom: .5rem;
}
.card-header.card-image {
    padding: 0;
    overflow: hidden;

}
.card-header.card-image img {
    display: block;
    width: 100%;
    max-height: 300px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    transition: 200ms transform ease-in-out;
}
.card:hover > .card-header.card-image > img {
    transform: scale(1.25);
}

.card-body {
    font-size: .9rem;
    padding: 0 var(--padding);
}
.card-footer {
    margin-top: 1rem;
    padding: var(--padding);
    padding-top: 0;
}
.card-footer-test {
    margin: 1rem;
    padding-bottom: var(--padding);
    padding-top: 0;
    display: flex;
    justify-content: space-between;
}

.btn {
    --color: hsl(200, 50%, 50%);
    background: var(--color);
    color: white;
    border: none;
    padding: .5em .75em;
    border-radius: .25em;
    cursor: pointer;
}

.btn:hover, .btn:focus {
    background: hsl(200, 50%, 60%);
}

.btn.btn-outline {
    background: none;
    border: 1px solid var(--color);
    color: var(--color);
}

.btn.btn-outline:hover, .btn.btn-outline:focus {
    background: hsl(200, 50%, 90%);
}

.btn + .btn {
    margin-left: .25rem;
}

.author-date-time {
    display: flex;
    justify-content: space-between;
    padding: 0 var(--padding);
}
/* Single blog post */
.single-blog-card {
    display: flex;
    width: 100%;
    margin-bottom: 1em;
    padding: 1em;
    justify-content: space-between;
    border: 1px solid black;
}
.blog-image-container {
    width: 47%;  
}

.blog-image-container img {
    display: block;
    width: 100%;
    max-height: 300px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}
.blog-text-single-post {
    width: 47%;
}

.blog-text-h2 {
    padding-bottom: 0.5em;
}

.blog-text-p, .blog-text-time {
    padding: 0;
}
/*Contact form////////////////*/

.contact-form-section {
    max-width: 400px;
    margin: auto;
}
.contact-form-container {
    background-color: lightgray;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border-radius: 25px;
}
.contact-form-div {
    margin:auto;
}
/*Footer///////////////////*/
footer {
    background-color: gray;
    text-align: center;
    font-size: 3vh;
    color: white;
}