body {
margin: 0;
color: white;
font-family: 'PT Sans', sans-serif;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
p {
margin: 0;
padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
}
li {
list-style: none;
}
/* Container */
.container {
width: 100%;
max-width: 1920px;
margin: 0 auto;
padding: 0 15px;
}
/* Header */
.header {
width: 100%;
background-color: rgba(15, 15, 15, 0.6);
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 1000;
}
.header__inner {
height: 85px;
display: flex;
align-items: center;
justify-content: space-around;
}
.header__logo {
font-size: 36px;
font-family: 'Playfair Display', sans-serif;
font-weight: 700;
}
/* Nav */
.nav {
display: flex;
align-items: center;
height: 100%;
}
.nav__link {
margin-right: 25px;
text-decoration: none;
font-size: 14px;
line-height: 18px;
font-family: 'PT Sans', sans-serif;
font-weight: 400;
color: white;
text-transform: uppercase;
padding: 0 10px;
display: flex;
align-items: center;
}
.nav__link.active:hover {
background-color: #1f1f1f;
}
.nav__photo {
margin-right: 10px;
}
/* Intro */
.intro {
background: #000 url("../image/Rectangle\ 3.jpg") center no-repeat;
background-size: cover;
overflow: hidden;
height: 810px;
width: 100%;
}
.intro__inner {
position: relative;
}
.intro__title {
position: absolute;
top: 30%;
left: 38%;
}
.intro__logo-text {
font-family: 'Playfair Display', sans-serif;
font-size: 50px;
font-weight: 700;
margin-bottom: 20px;
border-bottom: 1px solid #fff;
}
.intro__logo-world {
font-family: 'PT Sans', sans-serif;
font-size: 22px;
font-weight: normal;
line-height: 28px;
text-align: center;
}