/* ======= styles for the landing page ======= */
* {
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #7c9b4f;
    color: #2a160d;
    font-family: "Sour Gummy", cursive, Arial, sans-serif;
    font-size: 1.25rem;
    background-image: url("../images/iced-matcha-bg.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* Header Styles */
.myHeader {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    justify-content: space-between;
    padding: 1rem;
    background-color: rgba(42, 22, 13, 0.5);
    align-items: center;
}

.header-logo{
    display: grid;
    justify-content: left;
    align-items: center;
}

img.logo {
    max-width: 150px;
    border: #1c1c1c .37rem solid;
    border-radius: 50%;
    box-shadow: 2px 2px 5px #000000;
}

.navigation {
    display: grid;
    justify-content: center;
    align-items: center;
}

.header-text {
    display: grid;
    justify-content: right;
    align-items: right;
}

h1.title {
    font-size: 2.5rem;
    text-align: right;
    color: #7c9b4f;
    text-shadow: 2px 2px 4px #000000;
    margin-bottom: 0.5rem;
}

h3.subtitle {
    font-size: 1.5rem;
    text-align: right;
    color: #7c9b4f;
    text-shadow: 2px 2px 4px #000000;
}

a.navbutton {
    font-family: "Fuzzy Bubbles", cursive, Arial, sans-serif;
    background-color: #7c9b4f;
    color: #1c1c1c;
    border: solid #000000 3px;
    border-radius: 13px;
    padding: .5rem 1rem;
    margin: 0.3rem;
    box-shadow: 2px 2px 4px #000000;
}

a.navbutton:hover {
    background-color: #5e7a33;
    color: #ffefbf;
    cursor: pointer;
    transform: scale(1.10);
}

a.navbutton:visited {
    background-color: #7c9b4f;
    color: #2a160d;
    cursor: pointer;
}

a.navbutton:visited:hover {
    background-color: #5e7a33;
    color: #ffefbf;
    cursor: pointer;
    transform: scale(1.10);
}



/* footer styles */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr .5fr 1fr;
    justify-content: space-between;
    background-color: rgba(42, 22, 13, 0.5);
    padding : 1rem;
    color: #7c9b4f;
    text-shadow: 2px 2px 4px #000000;
}

.footer-left {
    display: grid;
    justify-content: left;
    align-items: left;
}

.footer-center {
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-right {
    display: grid;
    justify-content: right;
    align-items: right;
    text-align: right;
}

button.footer-button {
    font-family: "Fuzzy Bubbles", cursive, Arial, sans-serif;
    background-color: #7c9b4f;
    color: #1c1c1c;
    border: solid #000000 3px;
    border-radius: 13px;
    padding: .5rem 1rem;
    margin: 0.3rem;
    box-shadow: 2px 2px 4px #000000;
}

button.footer-button:hover {
    background-color: #5e7a33;
    color: #ffefbf;
    cursor: pointer;
    transform: scale(1.10);
}

/* link styles */
a {
    text-decoration: none;
    color: #f193a1;
}

a:hover {
    color: #ffefbf;
    text-decoration: underline;
}

a:visited {
    color: #d16f78;
}


main.pagename {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    width: 75%;
    margin: 0 auto;
}

.pagename-container {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 2px 2px 10px #000000;
    padding: 1rem;
    width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}