
@import url('https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&family=Delius&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-color: #FAF9F6;
    margin: 0;
    padding: 0;
    justify-content: center;
}

header {
    display: grid;
    grid-template-columns: 25% 25% 50%;
    height: 100px;
    margin: 0;
    background-color: #CCD5AE;
}

.head_logo {
    grid-column: 1/2;
    align-self: center;
    padding: 10px 10%;
    text-decoration: none;
    width: auto;
    height: 85px;
}

.head_logo img {
    width: auto;
    height: 100%;
    border-radius: 15px;
}

.head_logo:hover {
    text-decoration: none;
}

header nav {
    align-content: center;
    grid-column: 3/4;
}

header ul {
    display: flex;
    justify-content: space-around;
    justify-self: right;
    list-style-type: none;
    width: 80%;
    font-size: 1em;
}

header ul a {
    text-decoration: none;
    padding: 10px;
    font-family: delius;
    color: darkolivegreen;
    background-color: #FAEDCD;
    border-radius: 15px;
}

header ul a:hover {
    text-decoration: none;
    padding: 10px;
    font-family: delius;
    color: darkolivegreen;
    background-color: #FEFAE0;
    border-radius: 15px;
}

.hero {
    margin: 0;
    display:grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
}

.hero h1 {
    text-align: center;
    grid-column: 1/2;
    grid-row: 1/2;
    font-size: 4em;
    font-family: alan sans;
    color: #FAEDCD;
}

#hero-p {
    grid-column: 1/2;
    grid-row: 2/3;
    margin: 2% 17.5%;
    border-radius: 50px;
    background-color: #FAEDCD;
    order: 0;
}

.hero p {
    grid-column: 1/2;
    grid-row: 2/3;
    padding: 0 20%;
    align-self: center;
    color: black;
    font-size: 1.25em;
    font-family: delius;
    text-align: center;
    order: 1;
}

#hero-buttons {
    grid-column: 1/2;
    grid-row: 4/5;
    display: flex;
    justify-content: space-around;
    font-size: 1.25em;
}

.hero a {
    margin: 5%;
    align-self: center;
    padding: 20px;
    border: solid 1px black;
    border-radius: 10px;
    text-decoration: none;
    font-family: delius;   
    background-color: #FAEDCD;
    color: darkolivegreen;
    transition: transform 1s;
}

.hero a:hover {
    margin: 5%;
    align-self: center;
    padding: 20px;
    border: solid 1px black;
    border-radius: 10px;
    text-decoration: none;
    font-family: delius;   
    background-color: #FEFAE0;
    color: darkolivegreen;
    transform: scale(1.25);
}

#hero-img {
    grid-column: 1/2;
    grid-row: 1/5;
    z-index: -1;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 5% ;
    background-color: #FAEDCD;
}

#home-keychain {
    grid-column: 1/2;
    padding: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#home-keychain img {
    justify-self: center;
    width: 90%;
    height: 50%;
    border-radius: 50%;
    border: solid 7.5px #CCD5AE;
    object-fit: cover;
    transition: transform 2.5s;
}

#home-keychain img:hover {
    justify-self: center;
    width: 90%;
    height: 50%;
    border-radius: 50%;
    border: solid 7.5px #CCD5AE;
    object-fit: cover;
    transform: scale(1.1);
}

#home-keychain h2 {
    font-size: 2em;
    font-family: alan sans;
}

#home-keychain p {
    font-size: 1em;
    text-align: center;
    font-family: delius;
}

#home-keychain a {
    font-size: .75em;
    text-decoration: none;
    font-family: delius;
    color: darkolivegreen;
    font-weight: bold;
}

#home-stuffed {
    grid-column: 2/3;
    padding: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#home-stuffed img {
    justify-self: center;
    width: 90%;
    height: 50%;
    border-radius: 50%;
    border: solid 7.5px #CCD5AE;
    object-fit: cover;
    transition: transform 2.5s;
}

#home-stuffed img:hover {
    justify-self: center;
    width: 90%;
    height: 50%;
    border-radius: 50%;
    border: solid 7.5px #CCD5AE;
    object-fit: cover;
    transform: scale(1.1);
}

#home-stuffed h2 {
    font-size: 2em;
    font-family: alan sans;
}

#home-stuffed p {
    font-size: 1em;
    text-align: center;
    font-family: delius;
}

#home-stuffed a {
    font-size: .75em;
    text-decoration: none;
    font-family: delius;
    color: darkolivegreen;
    font-weight: bold;
}

#home-bag {
    grid-column: 3/4;
    padding: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#home-bag img {
    justify-self: center;
    width: 90%;
    height: 50%;
    border-radius: 50%;
    border: solid 7.5px #CCD5AE;
    object-fit: cover;
    transition: transform 2.5s;
}

#home-bag img:hover {
    justify-self: center;
    width: 90%;
    height: 50%;
    border-radius: 50%;
    border: solid 7.5px #CCD5AE;
    object-fit: cover;
    transform: scale(1.1);
}

#home-bag h2 {
    font-size: 2em;
    font-family: alan sans;
}

#home-bag p {
    font-size: 1em;
    text-align: center;
    font-family: delius;
}

#home-bag a {
    font-size: .75em;
    text-decoration: none;
    font-family: delius;
    color: darkolivegreen;
    font-weight: bold;
}

#home-blanket {
    grid-column: 4/5;
    padding: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#home-blanket img {
    justify-self: center;
    width: 90%;
    height: 50%;
    border-radius: 50%;
    border: solid 7.5px #CCD5AE;
    object-fit: cover;
    transition: transform 2.5s;
}

#home-blanket img:hover {
    justify-self: center;
    width: 90%;
    height: 50%;
    border-radius: 50%;
    border: solid 7.5px #CCD5AE;
    object-fit: cover;
    transform: scale(1.1);
}

#home-blanket h2 {
    font-size: 2em;
    font-family: alan sans;
}

#home-blanket p {
    font-size: 1em;
    text-align: center;
    font-family: delius;
}

#home-blanket a {
    font-size: .75em;
    text-decoration: none;
    font-family: delius;
    color: darkolivegreen;
    font-weight: bold;
}

footer {
    display: grid;
    grid-template-columns: 25% 25% 50%;
    height: 100px;
    background-color: #CCD5AE;
}

.foot_logo {
    grid-column: 1/2;
    align-self: center;
    padding: 10px 10%;
    text-decoration: none;
    width: auto;
    height: 85px;
}

.foot_logo img {
    width: auto;
    height: 100%;
    border-radius: 15px;
    align-self: center;
}

.foot_logo:hover {
    text-decoration: none;
}

footer ul {
    align-self: center;
    grid-column: 3/4;
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    width: 100%;
    font-size: 1em;
}

footer ul a {
    text-decoration: none;
    padding: 15px;
    font-family: delius;
    color: darkolivegreen;
    background-color: #FAEDCD;
    border-radius: 15px;
}

footer ul a:hover {
    text-decoration: none;
    padding: 15px;
    font-family: delius;
    color: darkolivegreen;
    background-color: #FEFAE0;
    border-radius: 15px;
}

/** PRODUCT PAGE CSS **/

#keychain {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 5%;
}

#keychain div {
    display: flex;
    grid-column: 1/2;
    justify-content: space-around;
}

#keychain div img {
    width: 25%;
    border-radius: 25px;
}

#keychain p {
    align-self: center;
    font-family: delius;
}

#stuffed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 5%;
}

#stuffed div {
    display: flex;
    grid-column: 1/2;
    justify-content: space-around;
}

#stuffed div img {
    width: 20%;
    border-radius: 25px;
}

#stuffed p {
    align-self: center;
    font-family: delius;
}

#bag {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 5%;
}

#bag div {
    display: flex;
    grid-column: 1/2;
    justify-content: space-around;
}

#bag div img {
    width: 25%;
    border-radius: 25px;
}

#bag p {
    align-self: center;
    font-family: delius;
}

#blanket {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 5%;
}

#blanket div {
    display: flex;
    width: 100%;
    grid-column: 1/2;
    justify-content: space-around;
}

#blanket div img {
    width: 20%;
    border-radius: 25px;
}

#blanket p {
    align-self: center;
    font-family: delius;
}

/** ORDER FORM PAGE CSS **/

#order-title {
    font-family: alan sans;
    justify-self: center;
}

#order {
    justify-self: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 2px black solid;
    padding: 2.5% 10%;
    width: 50%;
    font-family: delius;
}

#label-keychain {
    margin: 25% 0;
}

#option-keychain {
    margin: 25% 0;
    font-family: delius;
}

#label-stuffed {
    margin: 25% 0;
}

#option-stuffed {
    margin: 25% 0;
    font-family: delius;
}

#label-bag {
    margin: 25% 0;
}

#option-bag {
    margin: 25% 0;
    font-family: delius;
}

#label-blanket {
    margin: 25% 0;
}

#option-blanket {
    margin: 25% 0;
    font-family: delius;
}

#pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 5% 20%;
}

#pricing h2, #pricing h3 {
    font-family: alan sans;
}

#pricing p {
    font-family: delius;
}

.order-column-1 {
    grid-column: 1/2;
    justify-items: center;
}

.order-column-2 {
    grid-column: 2/3;
    justify-items: center;
}