
/*<weight>: Use a value from 100 to 700
<uniquifier>: Use a unique and descriptive class name
Italic and Normal*/

.amarna-<uniquifier> {
  font-family: "Amarna", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.fuzzy-bubbles-regular {
  font-family: "Fuzzy Bubbles", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fuzzy-bubbles-bold {
  font-family: "Fuzzy Bubbles", sans-serif;
  font-weight: 700;
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Fuzzy Bubbles", sans-serif;
    background: #D16666;
}

/* PAGE WRAPPER */
.page {
    max-width: 500px;
    margin: auto;
    background: #D16666;
    padding: 15px;
}

/* NAV */
.top-bar {
background-color: #2C4251;
display: flex;
justify-content: space-between;
position: sticky;
width: 100%;
top: 0;
z-index: 1000;
}

.return, .nav-links {
display: flex;
}

.return a, .nav-links a {
text-decoration: none;
display: flex;
height: 100%;
font-size: 14px;
color: #95BFB3;
padding: 14px 16px;
font-weight: bold;
}



/* HERO */

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #D16666;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 50px;
    padding: 50px 0;
}

.hero h1 {
    font-family: "Amarna", sans-serif;
    font-size: 40px;
    margin: 5px 0;
    color: #4C061D;
    line-height: 3em;
}

.hero h2 {
    font-size: 16px;
    font-family: "Amarna", sans-serif;
    margin: 0;
    color: #4C061D;
    line-height: 3em;
}

.hero p {
    font-size: 11px;
    color: #4C061D;
    font-weight: bold;
    line-height: 3em;
}

/*gallery page*/
.gallery-title h3{
    color: #95BFB3;
    font-family: "Amarna", sans-serif;
    padding: 15px;

}

.gallery-title p{
    color: #D16666;
    font-family: "Fuzzy Bubbles", sans-serif;
    padding: 10px;
}

galler-title a {
    text-decoration: none;
}

.img {
    /*margin: 2%;
    width: 350px;*/
    height: 233px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

/*ABOUT*/
.me p {
    font-family: "Amarna", sans-serif;
    margin-bottom: 3%;
}

.me h2 {
    font-family: "Fuzzy Bubbles", sans-serif;
}

.foot {
    margin: 30%;
}


/* SECTION CARD */
.card {
    background: #2C4251;
    border-radius: 25px;
    padding: 15px;
    margin-bottom: 20px;
}

/* SECTION TITLE */
.section-title {
    background: #95BFB3;
    border-radius: 15px;
    font-size: 26px;
    padding: 10px;
    text-align: center;
    font-family: "Amarna", sans-serif;
    margin-bottom: 15px;
    color: #4C061D;
}

/* GRID SYSTEM */
.grid {
    display: grid;
    gap: 10px;

    grid-template-columns: repeat(2, 1fr);
}

/* BOXES */
.box {
    background: #95BFB3;
    padding: 10px;
    border-radius: 5px;
    font-size: 20px;
    text-align: center;
}
.box h4{
    font-family: "Amarna", sans-serif;
    color: #2A4D14;
    font-size: 20px;
}


/* VARIANTS */
.large {
    grid-column: span 1;
    grid-row: span 2;
}

.wide {
    grid-column: span 2;
}

.tall {
    grid-row: span 2;
}

/* FOOTER */
footer {
    text-align: center;
    font-size: 14px;
    color: #4C061D;
}

/* MOBILE */
@media (max-width: 600px) {
    .page {
        max-width: 100%;
    }
}

/* DESKTOP */
@media (min-width: 900px) {
    .page {
        max-width: 900px;
        padding: 30px;
    }

    .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .wide {
        grid-column: span 3;
    }
}