@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;500;700&display=swap');
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: poppins;
}

.line-one {
    position: fixed;
    width: 15px;
    height: 100vh;
    background: #00bbe4;
    left: 23%;
}

.line-two {
    position: fixed;
    width: 25px;
    height: 100vh;
    background: #fbb134;
    left: 25%;
}

nav {
    z-index: 2;
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px 0;
}

nav ul {
    flex: 1;
    text-align: right;
    padding-right: 270px;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 30px;
}

nav ul li a {
    color: #000;
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
    font-size: 18px;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #00bbe4;
    transition: width 0.4s;
}

nav ul li a:hover::after {
    width: 100%;
}

.logo {
    position: fixed;
    left: 120px;
    font-weight: bold;
    text-transform: uppercase;
}

.search {
    position: fixed;
    right: 160px;
}

.menu {
    position: fixed;
    right: 100px;
}

.img img {
    position: relative;
    width: 450px;
    left: 8.5%;
    top: -70px;
}

.title {
    position: fixed;
    position: absolute;
    top: 276px;
    left: 43%;
    line-height: .5;
    font-size: 100px;
    font-weight: 700;
    letter-spacing: -6px;
}

.title p {
    font-size: 25px;
    font-weight: 300;
    color: grey;
    text-transform: uppercase;
    left: 150px;
    letter-spacing: 10px;
}

.btn a {
    position: relative;
    text-decoration: none;
    bottom: 500px;
    right: -57%;
    text-transform: uppercase;
    background: #87BF60;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    transition: .4s;
}

.btn a:hover {
    background: #000;
    color: #fff;
}

.year {
    font-weight: 700;
    position: fixed;
    top: 556px;
    left: 110px;
    padding: 10px 30px;
}

.media ul {
    list-style: none;
    position: fixed;
    right: 20px;
    top: 63%;
    padding: 10px 10px;
}

.media ul li {
    cursor: pointer;
    font-size: 18px;
    margin: 24px 0;
    transition: .3s;
}

.media ul li:hover {
    transform: scale(1.8);
}