HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./style/css.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Righteous&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Righteous&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<div class="header__wrapper">
<div class="nav__wrapper">
<div class="header__nav">
<div class="nav__left">
<ol class="nav__items">
<li>Home</li>
<li>About</li>
<li>Menu</li>
<li>Reservation</li>
</ol>
</div>
<div class="nav__logo">
<img class="nav__logo-img" src="./style/img/Logo.png" alt="logo-nav">
</div>
<div class="nav__right">
<ol class="nav__items">
<li>Pages</li>
<li>Shop</li>
<li>Contact</li>
<li><img class="nav__right-img" src="./style/img/search.png" alt="search"></li>
<li><img class="nav__right-img" src="./style/img/shopping-bag.png" alt="shopping-bag"></li>
</ol>
</div>
</div>
</div>
</div>
</div>
<div class="background__enjoy">
<section class="enjoy">
<div class="enjoy__wrapper">
<div class="enjoy__text">
<div class="text__main">
<div class="main-head">
<div class="main-head__wrapper">
<div class="main-head__text">
Enjoy Your Morning Coffee.
</div>
</div>
</div>
<div class="text__main-sup">
<div class="main-sup__wrapper">
<div class="main-sup__text">
The coofee is brewed by fist roasting the green coffee beans over hot coals in
brazier. given to Opportunity.
</div>
</div>
</div>
<div class="text__btn-test-coffee">
<button class="btn__test-coffee">TEST COFFEE</button>
</div>
</div>
<div class="btn__play-video">
<div class="play-video__wrapper">
<div class="play-video__main">
<div class="play-video__text">
PLAY VIDEO
</div>
<div class="play-video__icon">
<img src="./style/img/Vector.png" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<main class="main">
<div class="main__wrapper">
<section class="benefits__cards">
<div class="benefits__card">
<div class="card__name">
<span class="number__card">01</span> Best Coffee Flavour
</div>
<div class="card__img">
<img class="img__card" src="./style/img/best cofee flavour.png" alt="">
</div>
</div>
<div class="benefits__card">
<div class="card__name">
<span class="number__card">02</span> Place to get lost
</div>
<div class="card__img">
<img class="img__card" src="./style/img/place to get lost.png" alt="">
</div>
</div>
<div class="benefits__card">
<div class="card__name">
<span class="number__card">03</span> Proper roesting
</div>
<div class="card__img">
<img src="./style/img/proper roesting.png" alt="" class="img__card">
</div>
</div>
</section>
<section class="our-history">
<div class="our-history__parts">
<div class="part__left">
<div class="part-left__wrapper">
<div class="left__first-img">
<img src="./style/img/place to get lost.png" alt="" class="first__img">
</div>
<div class="left__second-img">
<img src="./style/img/best cofee flavour.png" alt="" class="second__img">
</div>
</div>
</div>
<div class="part__middle">
<div class="part-middle__wrapper">
<div class="middle__img">
<img src="./style/img/two coffee.png" alt="" class="two-cofee__img">
</div>
</div>
</div>
<div class="part__right">
<div class="part-right__wrapper">
<div class="part-right__main">
<div class="right-name__wrapper">
<div class="part__right-name">
Our History
</div>
</div>
<div class="right-head__wrapper">
<div class="right__head">
Create a new story with us
</div>
</div>
<div class="right-text__wrapper">
<div class="right__text">
mauris rhoncus in imperdiet placerat. vestibu emismd nisl
suscirpit ligula volutpat, a feyguat urn maxmaus. cars massa
nibhtincidunt. donec et nibh maximus, est eu, mattis nuce.
preasent ut quam quis quam venen
atis fringilla. morbi vastibulum id tells mmodo mattis.
aliauam erat volutpal.
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="popular-product">
<div class="popular-product__wrapper">
<div class="popular-product__head">
<div class="head-popular__wrapper">
<div class="popular-product__head1">
Popular Product
</div>
<div class="popular-product__head2">
Coffee popular Product
</div>
</div>
</div>
<div class="coffee-cards__wrapper">
<div class="coffee__cards">
<div class="coffee-card__wrapper">
<div class="coffee__card">
<img src="./style/img/cofee bag.png" alt="" class="brazil">
<div class="card__name-brazil">
BRAZIL COFFEE GRED
</div>
<div class="card__btn-brazil">
<button class="btn__brazil"><img src="./style/img/shopping-bag.png" alt="" class="brazill_shop"> Add to cart</button>
</div>
</div>
</div>
<div class="coffee-card__wrapper">
<div class="coffee__card">
<img src="./style/img/cofee bag.png" alt="" class="brazil">
<div class="card__raiting">
<span class="raiting__text">COFFEE</span>
<div class="raiting__stars">
<img src="./style/img/star.png" alt="" class="star__brazil">
<img src="./style/img/star.png" alt="" class="star__brazil">
<img src="./style/img/star.png" alt="" class="star__brazil">
<img src="./style/img/star.png" alt="" class="star__brazil">
<img src="./style/img/unstar.png" alt="" class="unstar__brazil">
</div>
</div>
<div class="card__name-brazil">
BRAZIL COFFEE GRED
</div>
<div class="card__price">
PRICE - <span class="price__sell">$320.00/</span> $358
</div>
<div class="card__btn">
<button class="btn__view">VIEW ALL PRODUCT</button>
</div>
</div>
</div>
<div class="coffee-card__wrapper">
<div class="coffee__card">
<img src="./style/img/cofee bag.png" alt="" class="brazil">
<div class="card__raiting">
<span class="raiting__text">COFFEE</span>
<div class="raiting__stars">
<img src="./style/img/star.png" alt="" class="star__brazil">
<img src="./style/img/star.png" alt="" class="star__brazil">
<img src="./style/img/star.png" alt="" class="star__brazil">
<img src="./style/img/star.png" alt="" class="star__brazil">
<img src="./style/img/unstar.png" alt="" class="unstar__brazil">
</div>
</div>
<div class="card__name-brazil">
BRAZIL COFFEE GRED
</div>
<div class="card__price">
PRICE - <span class="price__sell">$320.00/</span> $358
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="coffee-machine">
<div class="coffee-machine__wrapper">
<div class="coffee-machine__content">
<div class="content__img-machine">
<img src="./style/img/coffee machine.png" alt="" class="coffee-machine__img">
</div>
<div class="content__text">
<div class="text__wrapper">
<div class="text__coffee">
<div class="text__coffee-head">
Coffee
machine, buy for home
</div>
<div class="text__main-coffee">
mauris rhoncus in imperdiet placerat. vestibu emismd nisl suscirpit ligula
volutpat, a feyguat urn maxmaus. cars massa nibhtincidunt. donec et nib
maximus, est eu, mattis nuce. preasent ut quam quis quam venen atis fri
ngilla. morbi vastibulum id tells mmodo mattis. aliauam erat volutpal.
</div>
<div class="btn__coffee-machine">
<button class="btn__discover-now">
DISCOVER NOW
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="coffee-menu">
<div class="coffee-menu__wrapper">
<div class="menu__main">
<div class="menu__header">
<div class="head__menu-menu">
Menu
</div>
<div class="head__menu-popular">
Coffee popular menu
</div>
</div>
<div class="coffee__menu">
<div class="menu__left menu-column">
<div class="column__division">
<div class="division__wrapper">
<div class="division__content">
<div class="division__content-img-name">
<img src="./style/img/best cofee flavour.png" alt="" class="americano">
<span class="division__name">Americano rosted gred</span>
</div>
<span class="division__price">$12.00</span>
</div>
</div>
</div>
<div class="division__wrapper">
<div class="division__content">
<div class="division__content-img-name">
<img src="./style/img/best cofee flavour.png" alt="" class="americano">
<span class="division__name">Americano rosted gred</span>
</div>
<span class="division__price">$12.00</span>
</div>
</div>
<div class="division__wrapper">
<div class="division__content">
<div class="division__content-img-name">
<img src="./style/img/best cofee flavour.png" alt="" class="americano">
<span class="division__name">Americano rosted gred</span>
</div>
<span class="division__price">$12.00</span>
</div>
</div>
<div class="division__wrapper">
<div class="division__content">
<div class="division__content-img-name">
<img src="./style/img/best cofee flavour.png" alt="" class="americano">
<span class="division__name">Americano rosted gred</span>
</div>
<span class="division__price">$12.00</span>
</div>
</div>
</div>
<div class="menu__right menu-column">
<div class="division__wrapper">
<div class="division__content">
<div class="division__content-img-name">
<img src="./style/img/best cofee flavour.png" alt="" class="americano">
<span class="division__name">Americano rosted gred</span>
</div>
<span class="division__price">$12.00</span>
</div>
</div>
<div class="division__wrapper">
<div class="division__content">
<div class="division__content-img-name">
<img src="./style/img/best cofee flavour.png" alt="" class="americano">
<span class="division__name">Americano rosted gred</span>
</div>
<span class="division__price">$12.00</span>
</div>
</div>
<div class="division__wrapper">
<div class="division__content">
<div class="division__content-img-name">
<img src="./style/img/best cofee flavour.png" alt="" class="americano">
<span class="division__name">Americano rosted gred</span>
</div>
<span class="division__price">$12.00</span>
</div>
</div>
<div class="division__wrapper">
<div class="division__content">
<div class="division__content-img-name">
<img src="./style/img/best cofee flavour.png" alt="" class="americano">
<span class="division__name">Americano rosted gred</span>
</div>
<span class="division__price">$12.00</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="testimonial">
<div class="testimonial__head">
<div class="testimonial__head-item1">
Testimonial
</div>
<div class="testimonial__head-item2">
Says our customers
</div>
</div>
<div class="customers__cards">
<div class="card__john">
<div class="john__info">
<div class="john-info__wrapper">
<div class="info__img-text">
<div class="img__john">
<img src="./style/img/John smith.png" alt="" class="john">
</div>
<div class="text__john">
Education WP is a special build for effective education & Learning Management
System site.
Education WP is the next generation & one of the best education WordPress themes
which all the strength of eLearning WP..
</div>
</div>
<div class="card-john__name-score">
<div class="card-john__name-post-score">
<div class="name__john">
John Smith
</div>
<div class="post__john">
Product Designer
</div>
</div>
<div class="score__john">
<img src="./style/img/star.png" alt="" class="score">
<img src="./style/img/star.png" alt="" class="score">
<img src="./style/img/star.png" alt="" class="score">
<img src="./style/img/star.png" alt="" class="score">
<img src="./style/img/star.png" alt="" class="score">
</div>
</div>
</div>
</div>
</div>
<div class="card__brett">
<div class="brett__info">
<div class="brett-info__wrapper">
<div class="info__img-text">
<div class="img__john">
<img src="./style/img/brett le.png" alt="" class="brett">
</div>
<div class="text__brett">
Education WP is a special build for effective education & Learning Management
System site.
Education WP is the next generation & one of the best education WordPress themes
which all the strength of eLearning WP..
</div>
</div>
<div class="card-brett__name-score">
<div class="card-brett__name-post-score">
<div class="name__brett">
John Smith
</div>
<div class="post__brett">
User Experience Designer
</div>
</div>
<div class="score__brett">
<img src="./style/img/star.png" alt="" class="score">
<img src="./style/img/star.png" alt="" class="score">
<img src="./style/img/star.png" alt="" class="score">
<img src="./style/img/star.png" alt="" class="score">
<img src="./style/img/star.png" alt="" class="score">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="count-swap__conteiner">
<div class="count-underline__customers">
<div class="count__people">2/6 People</div>
<div class="count__underline"></div>
</div>
<div class="swap__people">
<img src="./style/img/arrow-right.png" alt="" class="arrow__people-white">
<img src="./style/img/arrow-right-1.png" alt="" class="arrow__people-black">
</div>
</div>
</section>
<section class="booking">
<div class="booking-left__wrapper">
<div class="booking__left">
<img src="./style/img/card booking.png" alt="" class="left__img">
</div>
</div>
<div class="booking-right__wrapper">
<div class="booking__right">
<div class="right__name">
Reservation
</div>
<div class="right__head">
Booking a table
</div>
<div class="right__booking-menu">
<input placeholder="number of persons" type="text" class="number-of-persons menu__input">
<input placeholder="check in date" type="date" class="check-in-date menu__input">
<input placeholder="check in time" type="time" class="check-in-time menu__input">
</div>
<div class="right__btn-booking">
<button class="book-s-table">
BOOK S TABLE
</button>
</div>
</div>
</div>
</section>
<section class="latest-news">
<div class="latest-news__head">
<div class="news__head-item1">
Testimonial
</div>
<div class="news__head-item2">
Our latest news
</div>
</div>
<div class="types-coffee__cards">
<div class="coffee-card__wrapper3">
<div class="coffee__card-item5">
<img src="./style/img/proper roesting.png" alt="" class="item5__img">
</div>
<div class="card-item5__main-text">
<div class="card-item5__text">
<div class="text-card__item1">
<span class="by">By:</span> rasaline
</div>
<div class="card-item5__text-date">
23.01.2021
</div>
</div>
<div class="card-item5__text-ideal">
Ideal cocktails from barmen....
</div>
<div class="card-item5__text-read">
<span class="more">Read more</span>
<img src="./style/img/arrow-right бежевая.png" alt="" class="read-more">
</div>
</div>
</div>
<div class="coffee-card__wrapper3">
<div class="coffee__card-item5">
<div class="coffee__card-item5">
<img src="./style/img/proper roesting.png" alt="" class="item5__img">
</div>
<div class="card-item5__main-text">
<div class="card-item5__text">
<div class="text-card__item1">
<span class="by">By:</span> rasaline
</div>
<div class="card-item5__text-date">
23.01.2021
</div>
</div>
<div class="card-item5__text-ideal">
Ideal cocktails from barmen....
</div>
<div class="card-item5__text-read">
<span class="more">Read more</span>
<img src="./style/img/arrow-right бежевая.png" alt="" class="read-more">
</div>
</div>
</div>
</div>
<div class="coffee-card__wrapper3">
<div class="coffee__card-item5">
<div class="coffee__card-item5">
<img src="./style/img/proper roesting.png" alt="" class="item5__img">
</div>
<div class="card-item5__main-text">
<div class="card-item5__text">
<div class="text-card__item1">
<span class="by">By:</span> rasaline
</div>
<div class="card-item5__text-date">
23.01.2021
</div>
</div>
<div class="card-item5__text-ideal">
Ideal cocktails from barmen....
</div>
<div class="card-item5__text-read">
<span class="more">Read more</span>
<img src="./style/img/arrow-right бежевая.png" alt="" class="read-more">
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</main>
<footer class="footer">
<div class="footer-nav__wrapper">
<div class="nav__content">
<ol class="footer__nav">
<li><img src="./style/img/Logo.png" alt="" class="footer-nav__logo"></li>
<li>Home</li>
<li>Rerervation</li>
<li>Menu</li>
<li>About</li>
<li>Pages</li>
<li>Shop</li>
<li>Blogs</li>
<li class="footer-nav__input"><input type="email" placeholder="Enter Your Email" class="input__email"></li>
</ol>
</div>
</div>
<div class="footer-footer">
<div class="footer-footer__wrapper">
<div class="footer-footer__text">
e-Tennis © 2021. All rights reserved.
</div>
</div>
</div>
</footer>
</body>
</html>
img {display: block;}
body {
margin: 0;
padding: 0;
font-family: "Inter";
color: white;
background-color: #14110E;
}
.header__wrapper {
max-width: 100%;
min-height: 125px;
}
.nav__wrapper {
min-height: 125px;
max-width: 1250px;
margin: 0 auto;
}
.header {
background-color: #1C1814;
color: white;
}
.header__nav {
display: flex;
justify-content: space-between;
align-items: center;
min-height: 125px;
flex-wrap: wrap;
}
.nav__items {
display: flex;
list-style: none;
flex-wrap: wrap;
gap: 48px;
align-items: center;
min-height: 34px;
font-size: 18px;
font-weight: 400;
line-height: 21.78px;
}
.nav__items>li:hover {
color: #C99E71;
}
/* Начало Enjoy */
.enjoy__wrapper {
margin: 147px 375px 166px 375px;
max-width: 892px;
min-height: 356px;
margin-top: 0;
}
.main-head__wrapper {
max-width: 875px;
min-height: 188px;
}
.main-head__text {
font-family: "Righteous", sans-serif;
font-size: 72px;
line-height: 93.6px;
margin-bottom: 32px;
}
.main-sup__wrapper {
max-width: 511px;
min-height: 72px;
}
.main-sup__text {
font-family: "Urbanist", sans-serif;
font-weight: 500;
font-size: 20px;
line-height: 36px;
margin-bottom: 32px;
}
.btn__test-coffee {
background-color: #C99E71;
color: white;
max-width: 202px;
min-height: 70px;
padding: 24px 40px 24px 40px;
font-size: 16px;
line-height: 21.78px;
font-weight: 600;
font-family: "Inter";
}
.enjoy__text {
display: flex;
justify-content: space-between;
align-items: end;
margin-top: 147px;
position: absolute;
flex-wrap: wrap;
}
.play-video__wrapper {
max-width: 93px;
min-height: 109px;
}
.play-video__main {
display: flex;
flex-direction: column-reverse;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}
.play-video__icon {
border: solid 1.5px white;
border-radius: 55px;
padding: 16px 16px 13px 19px;
}
.play-video__text {
font-family: "Inter";
font-weight: 400;
line-height: 19.36px;
font-size: 16px;
}
.background__enjoy {
background-image: url(./img/background\ image\ first\ page.png);
background-repeat: no-repeat;
background-size: cover;
max-width: 100%;
min-height: 731px;
}
/* начинается main */
/* .main {
background-color: #14110E;
} */
.main__wrapper {
max-width: 1174px;
/* margin: 140px 165px 140px 165px; */
margin: 0 auto;
}
.benefits__cards {
margin-top: 140px;
display: flex;
gap: 36px;
justify-content: space-between
}
.img__card {
max-width: 366px;
min-height: 100%;
}
.number__card {
color: #C99E71;
}
.card__name {
font-family: "Righteous", sans-serif;
font-size: 24px;
line-height: 29.8px;
font-weight: 400;
margin-bottom: 14px;
}
/* our-history section */
.our-history {
margin-top: 140px;
}
.our-history__parts {
display: flex;
gap: 32px;
}
.part-left__wrapper {
max-width: 298px;
min-height: 635px;
}
.part-middle__wrapper {
max-width: 600px;
min-height: 635px;
}
.part-right__wrapper {
min-width: 550px;
min-height: 635px;
}
.left__second-img {
margin-top: 31px;
}
.first__img, .second__img {
max-width: 298px;
max-height: 302px;
}
.part__right-name {
font-weight: 600;
font-size: 18px;
line-height: 21.6px;
font-family: "Urbanist", sans-serif;
color: #C99E71;
}
.right__head {
margin-top: 12px;
font-weight: 400;
font-size: 48px;
line-height: 62.4px;
font-family: "Righteous", sans-serif;
}
.right__text {
font-weight: 500;
font-size: 16px;
line-height: 28.8px;
font-family: "Urbanist", sans-serif;
margin-top: 36px;
opacity: 80%;
}
.right-name__wrapper {
max-width: 92px;
min-height: 22px;
}
.right-head__wrapper {
max-width: 398px;
min-height: 124px;
}
.right-text__wrapper {
max-width: 398px;
min-height: 174px;
}
.part__right {
background-color: #1C1814;
}
.part-right__main {
padding: 120px 56px 147px 56px;
}
/* popular product */
.popular-product {
margin-top: 140px;
}
.popular-product__wrapper {
min-height: 849px;
max-width: 1174px;
}
.head-popular__wrapper {
max-width: 1174px;
min-height: 96px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 12px;
}
.popular-product__head {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.popular-product__head1 {
color: #C99E71;
font-size: 18px;
font-weight: 600;
line-height: 21.6px;
font-family: "Urbanist", sans-serif;
}
.popular-product__head2 {
font-weight: 400;
font-size: 48px;
line-height: 62.4px;
font-family: "Righteous", sans-serif;
}
.coffee-cards__wrapper {
max-width: 1174px;
min-height: 700px;
}
.coffee-card__wrapper {
max-width: 366px;
min-height: 579px;
}
.coffee__cards {
display: flex;
margin-top: 104px;
justify-content: space-between;
}
.coffee__card {
display: flex;
flex-direction: column;
gap: 36px;
align-items: center;
/* max-width: 366px;
min-height: 579px; */
}
.btn__brazil {
display: flex;
align-items: center;
background-color: #C99E71;
gap: 12px;
font-size: 18px;
line-height: 21.6px;
font-weight: 600;
font-family: "Urbanist", sans-serif;
padding: 13px 20px 13px 20px;
color: white;
}
.card__name-brazil {
font-size: 24px;
line-height: 29.8px;
font-family: "Righteous", sans-serif;
}
.card__raiting {
display: flex;
gap: 13px;
}
.raiting__stars {
display: flex;
gap: 4px;
}
.raiting__text {
color: #C99E71;
font-size: 16px;
line-height: 19.2px;
font-weight: 500;
font-family: "Urbanist", sans-serif;;
}
.card__price {
font-family: "Urbanist", sans-serif;
font-size: 18px;
font-weight: 600;
line-height: 21.6px;
}
.price__sell {
color: #C99E71;
}
.btn__view {
color: white;
background-color: #C99E71;
padding: 20px 36px 20px 36px;
font-size: 18px;
font-weight: 700;
line-height: 21.78px;
font-family: "Inter";
margin-top: 60;
}
/* cofee machine */
.coffee-machine__wrapper {
max-width: 100%;
min-height: 530px;
}
.coffee-machine {
margin-top: 125px;
}
.text__wrapper {
max-width: 535px;
min-height: 374px;
}
.text__coffee-head {
max-width: 501px;
min-height: 124px;
}
.text__main-coffee {
max-width: 535px;
min-height: 116px;
}
.coffee-machine__content {
display: flex;
gap: 160px;
padding: 72px 100px 84px 169px;
}
.text__coffee-head {
font-weight: 400;
font-size: 48px;
line-height: 62.4px;
font-family: "Righteous";
}
.text__main-coffee {
font-family: "Urbanist";
font-weight: 500;
font-size: 16px;
line-height: 28.8px;
opacity: 80%;
}
.btn__discover-now {
color: white;
background-color: #C99E71;
font-size: 18px;
font-family: "Inter";
line-height: 21.78px;
font-weight: 700;
padding: 20px 36px 20px 36px;
}
.text__coffee {
display: flex;
flex-direction: column;
gap: 36px;
}
.coffee-machine__content {
background-color: #1C1814;
}
/* coffee-menu */
.coffee-menu {
margin-top: 140px;
}
.coffee-menu__wrapper {
max-width: 1170px;
min-height: 740px;
}
.menu__header {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
}
.head__menu-menu {
color: #C99E71;
line-height: 21.6px;
font-weight: 600;
font-family: "Urbanist";
font-size: 18px;
}
.head__menu-popular {
font-family: "Righteous";
font-weight: 400;
font-size: 48px;
line-height: 62.4px;
}
.americano {
max-width: 72px;
min-height: 72px;
}
.division__wrapper {
max-width: 565px;
min-height: 120px;
}
* {
box-sizing: border-box;
}
.division__content {
display: flex;
align-items: center;
justify-content: space-between;
padding: 24px 24px 24px 24px;
border: 1px #32323D solid;
max-width: 565px;
min-height: 120px;
/* box-sizing: border-box; */
}
.division__content-img-name {
display: flex;
gap: 20px;
align-items: center;
}
.division__name {
font-family: "Righteous";
font-weight: 400;
font-size: 24px;
line-height: 29.8px;
}
.division__price {
font-family: "Urbanist";
font-size: 18px;
line-height: 21.6px;
font-weight: 600;
color: #C99E71;
}
.coffee__menu {
margin-top: 56px;
display: flex;
justify-content: space-between;
gap: 40px;
}
.menu-column {
display: flex;
flex-direction: column;
gap: 36px;
flex-basis: 85%;
}
/* testimonial start */
.testimonial {
margin-top: 150px;
}
.testimonial__head {
display: flex;
flex-direction: column;
align-items: center;
gap:12px
}
.testimonial__head-item1 {
color: #C99E71;
font-family: "Urbanist";
font-weight: 600;
font-size: 18px;
line-height: 21.6px;
}
.testimonial__head-item2 {
font-family: "Righteous";
font-weight: 400;
font-size: 48px;
line-height: 62.4px;
margin-bottom: 76px;
}
.customers__cards {
display: flex;
justify-content: space-between;
}
.john-info__wrapper {
max-width: 565px;
min-height: 305px;
padding: 40px 40px 40px 40px;
}
.text__john {
flex-basis: 332px;
min-height: 145px;
}
.john__info {
background-color: #1C1814;
}
.info__img-text {
display: flex;
gap: 24px;
}
.card-john__name-post {
display: flex;
flex-direction: column;
gap: 4px;
align-items: start;
}
.john__info {
display: flex;
align-content: center;
}
.score {
flex-basis: 20px;
max-height: 20px;
}
.score__john {
display: flex;
}
.card-john__name-score {
display: flex;
justify-content: space-between;
}
.text__john {
font-family: "Urbanist";
font-weight: 500;
font-size: 16px;
line-height: 28.8px;
opacity: 80%;
}
.name__john {
font-family: "Urbanist";
font-weight: 500;
font-size: 18px;
line-height: 21.6px;
}
.post__john {
font-family: "Urbanist";
font-weight: 500;
font-size: 14px;
line-height: 25.2px;
opacity: 50%;
}
.card-john__name-score {
margin-top: 28px;
display: flex;
align-items: center;
}
.brett-info__wrapper {
max-width: 565px;
min-height: 305px;
padding: 40px 40px 40px 40px;
}
.text__brett {
flex-basis: 332px;
min-height: 145px;
}
.brett__info {
background-color: #1C1814;
}
.info__img-text {
display: flex;
gap: 24px;
}
.card-brett__name-post {
display: flex;
flex-direction: column;
gap: 4px;
align-items: start;
}
.brett__info {
display: flex;
align-content: center;
}
.score {
flex-basis: 20px;
max-height: 20px;
}
.score__brett {
display: flex;
}
.card-brett__name-score {
display: flex;
justify-content: space-between;
}
.text__brett {
font-family: "Urbanist";
font-weight: 500;
font-size: 16px;
line-height: 28.8px;
opacity: 80%;
}
.name__brett {
font-family: "Urbanist";
font-weight: 500;
font-size: 18px;
line-height: 21.6px;
}
.post__brett {
font-family: "Urbanist";
font-weight: 500;
font-size: 14px;
line-height: 25.2px;
opacity: 50%;
}
.card-brett__name-score {
margin-top: 28px;
display: flex;
align-items: center;
}
.count-swap__conteiner {
display: flex;
justify-content: space-between;
margin-top: 36px;
align-items: center;
min-height: 56px;
}
.count-underline__customers {
display: flex;
flex-direction: column;
}
.swap__people {
display: flex;
gap: 16px;
}
.arrow__people-black {
border: 0.1px solid #C99E71;
border-radius: 55%;
padding: 8px 8px 8px 8px;
background-color: #C99E71;
}
.count__people {
color: #C99E71;
font-family: "Urbanist";
font-weight: 600;
font-size: 20px;
line-height: 27px;
border-bottom: #C99E71 5px solid;
border-radius: 80%;
}
/* booking */
.booking-left__wrapper {
flex-basis: 585px;
min-height: 652px;
}
.booking-right__wrapper {
flex-basis: 585px;
min-height: 652px;
}
.right__name {
padding-top: 72px;
color: #C99E71;
}
.booking {
display: flex;
margin-top: 140px;
}
.right__head {
margin-top: 0px;
}
.booking__right {
background-color: #1C1814;
display: flex;
flex-direction: column;
align-items: center;
flex-wrap: wrap;
}
.right__btn-booking {
margin-bottom: 114px;
}
.book-s-table {
background-color: #C99E71;
color: white;
padding: 20px 36px 20px 36px;
font-family: "Inter";
font-size: 18px;
line-height: 21.78px;
font-weight: 700;
}
.right__booking-menu {
display: flex;
flex-wrap: wrap;
gap: 24px;
margin-top: 56px;
margin-bottom: 56px;
}
.menu__input {
max-width: 100%;
min-height: 54px !important;
}
input[type=text] {
flex-basis: 489px;
font-family: "Urbanist";
font-size: 18px;
line-height: 32.4px;
font-weight: 600;
}
input[type=date] {
flex-basis: 489px;
}
input[type=time] {
flex-basis: 489px;
}
/* latest news */
.latest-news__head {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 140px;
gap: 12px;
margin-bottom: 56px;
}
.news__head-item1 {
color: #C99E71;
font-size: 18px;
font-weight: 600;
font-family: "Urbanist";
line-height: 21.6px;
}
.news__head-item2 {
font-family: "Righteous";
font-weight: 400;
font-size: 48px;
line-height: 62.4px;
}
.types-coffee__cards {
display: flex;
gap: 36px;
}
.coffee-card__wrapper3 {
max-width: 366px;
min-height: 528px;
}
.item5__img {
max-width: 366px;
min-height: 360px;
}
.card-item5__text {
display: flex;
justify-content: space-between;
}
.card-item5__text-read {
display: flex;
gap: 4px;
}
.card-item5__main-text {
padding: 20px 24px 24px 24px;
background-color: #1C1814;
}
.by {
color: #C99E71;
}
.text-card__item1 {
font-family: "Urbanist";
font-size: 18px;
line-height: 21.6px;
font-weight: 500;
margin-bottom: 16px;
}
.card-item5__text-ideal {
font-family: "Righteous";
font-size: 20px;
line-height: 30px;
font-weight: 400;
}
.card-item5__text-read {
font-family: "Urbanist";
color: #C99E71;
font-size: 16px;
font-weight: 500;
line-height: 19.2px;
margin-top: 33px;
}
/* footer */
.footer {
margin-top: 140px;
max-width: 100%;
}
.footer-nav__wrapper {
max-width: 1174px;
min-height: 72px;
margin: 0 auto;
}
.footer__nav {
display: flex;
list-style: none;
justify-content: space-between;
align-items: center;
font-family: "Urbanist";
font-weight: 500;
font-size: 20px;
line-height: 20px;
}
input[type=email] {
max-width: 328px;
min-height: 70px;
border: solid 0.1px #1C1814;
background-color: #1C1814;
border-radius: 30%;
background-image: url(./img/Vector.png);
background-repeat: no-repeat;
background-position: 80%;
font-size: 16px;
line-height: 28.8px;
color: white;
opacity: 80%;
}
.footer-footer {
margin-top: 72px;
background-color: #1C1814;
}
.footer-footer__wrapper {
max-width: 100%;
min-height: 90px;
}
.footer-footer__text {
max-width: 100%;
min-height: 90px;
display: flex;
justify-content: center;
align-items: center;
font-family: "Urbanist";
font-weight: 500;
font-size: 14px;
line-height: 25.2px;
}
Also see: Tab Triggers