/**Final version of the product homepage created by Yousaf. Everything works correctly and shows up on the website.
Please pull the code and made a copy of this file. Do not make changes to this file because this is my file and what I created, and I dont want to fix any more issues not caused by me.
Thank You!**/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

body {
    background: #fdcc04;
}

nav {
    height: 80px;
    background: #fdcc04;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem calc((100vw - 1300px) / 2);
    text-align: center;
    font-weight: bold;
}

.logo {
    color: #000;
    font-size: 4rem;
    font-style: italic;
    font-weight: bold;
    text-underline-position: auto;
    padding: 0 2rem;
    text-align: center;
    align-items: center;
}

nav a {
    padding: 1rem 3rem;
    font-size: 1rem;
    border: none;
    color: #fdcc04;
    background: #000;
    cursor: pointer;
    border-radius: 25px;
    text-align: center;
    align-items: center;
    font-weight: bold;
}

nav a:hover {
    background: #fff;
    color: #000;
}

.hero {
    background: #fdcc04;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 95vh;
    padding: 3rem calc((100vw - 1300px) / 2);
}

.column-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #000;
    padding: 0rem 2rem;
    text-align: center;
    align-items: center;
    font-weight: bold;
}

.column-left h1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-align: center;
    align-items: center;
    font-weight: bold;
}

.column-left p {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: center;
    align-items: center;
}

button {
    padding: 1rem 3rem;
    font-size: 1rem;
    border: none;
    color: #fdcc04;
    background: #000;
    cursor: pointer;
    border-radius: 25px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-top: auto;
    font-weight: bold;
}

button:hover {
    background: #fff;
    color: #000;
}

.column-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem 2rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-top: auto;
}

.hero-image {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}