:root {
    --panel_color: #0f3b8ecd;
    --text_color: #d4be77;
    --link_color: #bbb18f;
    --highlight_color: #ffffff;
}


html,
body {
    margin: 0;
    min-height: 100%;
    padding: 0px;
    overflow-x: hidden;
    font-family: "Source Sans Pro", sans-serif;
}





.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 95%;
    margin: auto;
}

.title {
    background-color: grey;
    align-items: center;
    text-align: center;
    align-content: center;
    margin: auto;
}

.hero {
    text-shadow: 4px 3px 0 #252525;
    color: var(--text_color);
    align-items: center;
    text-align: center;
    align-content: center;
    background-color: var(--panel_color);
    border-radius: 20px;
    padding-bottom: 15px;
}


.hero_buttons {
    display: flex;
    justify-content: space-between;
}

.hero button {
    flex: 1;
    font-size: 1.9vw;
    margin: 0px;
    color: #30312b;
    background-color: #d5c6af;
}

.hero a {
    display: inline-block;
    color: var(--link_color);
    text-decoration: none;
    text-shadow: none;
    border-bottom: 1px dashed var(--link_color);
    padding: 4px 2px;
    margin: 0 14px;
    transition: color 0.25s ease, border-color 0.25s ease, text-shadow 0.25s ease;
}

.hero a:hover,
.hero a:focus {
    color: var(--highlight_color);
    border-bottom-style: solid;
    border-bottom-color: var(--highlight_color);
    text-shadow: 0 0 8px rgba(122, 173, 224, 0.7);
}

.blog {
    margin: auto;
    width: 700px;
    max-width: 90%;
    background-color: var(--panel_color);
    color: var(--text_color);
    padding: 1%;
    border-radius: 25px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.blog img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border-radius: 10px;
    box-shadow: #252525;
}

.blog a {
    color: var(--link_color);
    text-decoration: none;
}

.blog a:hover,
.blog a:focus {
    color: var(--highlight_color);
    text-shadow: 0 0 8px rgba(122, 173, 224, 0.7);
}

.recent {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 800px;
}

.thumb {}

.thumb img {
    width: 100%;
    border-radius: 5px;
}

.thumb a {
    width: 100%;
}

.location {
    padding: 5px;
    width: 100%;
    background-color: rgb(13, 32, 75);
    position: fixed;
    color: var(--link_color);
}

.location a {
    color: var(--link_color);
    text-decoration: none;
    text-shadow: none;
    padding: 4px 2px;
    transition: color 0.25s ease, border-color 0.25s ease, text-shadow 0.25s ease;
}

.location a:hover,
.location a:focus {
    color: var(--highlight_color);
    border-bottom-style: solid;
    text-shadow: 0 0 8px rgba(122, 173, 224, 0.7);
}

.social img:hover,
.social img:focus {
    transform: scale(1.2);
}

.social img {
    transition: 0.2s;
}

.blog img:focus {
    position: absolute;
}