/*Start global*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    font-family: "Roboto", sans-serif;
    color: black;
}

body {
    width: 100%;
    height: 100%;
    background: url("./images/clouds.jpg") no-repeat center fixed;
    background-size: cover;
}

section {
    padding: 2rem;
}

a {
    text-decoration: none;
    color: #eee;
}

p {
    font-size: 1.5rem;
    font-weight: 200;
}

img {
    width: 100%;
}


/*End global*/


/* Start reusable*/

.container {
    width: 90%;
    max-width: 120rem;
    height: 100%;
    margin: 0 auto;
    position: relative;
}


/*End reusable */


/*Start header*/

header {
    width: 100%;
    height: 70vh;
}

.top-nav {
    width: 100%;
    height: 15vh;
    position: relative;
    top: -100vh;
    z-index: 50;
    background-color: #e063c1;
    border-bottom-right-radius: 100%;
    border-bottom-left-radius: 100%;
    transition: all 650ms cubic-bezier(1, 0, 0, 1);
}

.nav-list {
    list-style: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

li {
    margin: 0 2.5rem;
}

.nav-link {
    font-family: "The Historia Demo", sans-serif;
    font-size: 5rem;
    padding: 1rem;
}

.nav-link:hover,
.nav-link:focus {
    background: linear-gradient(to top, #3d1fc7, #fd57fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top-nav.open {
    top: 0;
    border-radius: initial;
}

.menu-toggler {
    position: absolute;
    top: 5rem;
    right: 5rem;
    height: 4rem;
    width: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1500;
    transition: transform 650ms ease-out;
}

.menu-toggler.open {
    transform: rotate(-45deg);
}

.bar {
    background: linear-gradient(to right, #140aa1, #fd57fd);
    width: 100%;
    height: 4px;
    border-radius: .8rm;
}

.bar.half {
    width: 50%;
}

.bar.start {
    transform-origin: right;
    transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

.open .bar.start {
    transform: rotate(-450deg) translateX(.8rem);
}

.bar.end {
    align-self: flex-end;
    transform-origin: left;
    transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

.open .bar.end {
    transform: rotate(-450deg) translateX(-.8rem);
}

@font-face {
    font-family: 'The Historia Demo';
    src: url('font/thehistoriademo-webfont.woff2') format('woff2'), url('font/thehistoriademo-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.nav-link {
    @font-face {
        font-family: 'The Historia Demo';
        src: url('fonts/thehistoriademo-webfont.woff2') format('woff2'), url('fonts/thehistoriademo-webfont.woff') format('woff');
        font-weight: normal;
        font-style: normal;
    }
}

.landing-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    text-align: center;
    z-index: 1;
}

.landing-text h2 {
    font-size: 10rem;
    font-family: "The Historia Demo", sans-serif;
    background: linear-gradient(to top, yellow, #fd57fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    scroll-padding: 1rem;
    user-select: none;
}

.about-heading {
    text-align: center;
    text-transform: uppercase;
    line-height: 0;
    margin-bottom: 6rem;
}

.profile-img {
    flex: 1;
    margin-right: 5rem;
}

.about-heading h1 {
    font-size: 8rem;
    opacity: .3;
}

.about-heading h6 {
    font-size: 2rem;
    font-weight: 300;
}

.about-details {
    flex: 1;
}

.price h1 {
    font-size: 3rem;
    font-family: "The Historia Demo", sans-serif;
    padding-top: 10px;
    padding-bottom: 10px;
}


/*End header*/

.about .container {
    display: flex;
    align-items: center;
    justify-content: center;
}


/*End about*/

.lable {
    text-align: center;
}

.lable h1 {
    font-size: 10rem;
    font-family: "The Historia Demo", sans-serif;
    background: linear-gradient(to top, yellow, #fd57fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    scroll-padding: 1rem;
    user-select: none;
}

#product table {
    width: 40%;
    height: inherit;
    margin: auto;
}

th {
    font-size: 2rem;
    font-weight: 500;
}

td {
    font-size: 1.5rem;
    font-weight: 200;
}

#order {
    padding: 2rem;
    text-align: right;
}

#order button {
    width: 20%;
    height: 5rem;
    font-size: 3rem;
    font-family: "The Historia Demo", sans-serif;
    background: linear-gradient(to top, yellow, #fd57fd);
}

#order button:hover {
    background: linear-gradient(to top, blue, yellow);
    color: white;
    cursor: pointer;
}

form {
    font-size: 3rem;
    font-family: "The Historia Demo", sans-serif;
    padding-right: 2rem;
}