@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&family=Poppins:ital,wght@0,200;0,600;0,900;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #1ad2f3;
    font-family: 'poppins', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    height: 80px;
    align-items: center;
    color: #F50D89;
    padding: 0 50px;
}

.navbar .logo {
    margin-right: 100px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 900;
    color: #0a0909;
}
.navbar:hover {
    color: #0a0909;
}
.logo:hover {
    color: #F50D89;
}

.navbar .categories {
    margin-right: auto;
    position: relative;
    right: -400px;
}

.navbar .categories ul li {
    display: inline-block;
    padding: 0 30px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.navbar .menu {
    margin-right: -10px;
    font-size: 20px;
}

.stripe {
    position: absolute;
    height: 70px;
    /* width: 100%; */
    bottom: 43%;
    background: linear-gradient(to right, #ee51a5, #d62784);
}

.coke {
    position: absolute;
    top: 50%;
    left: 30%;
    z-index: 1;
}

.coke img {
    transform: translate(-50%, -50%);
    max-height: 700px;
}

.small-coke {
    position: absolute;
    left: 85%;
    bottom: 80px;
    transform: translateX(-50%);
    display: flex;
    z-index: 1;
}

.small-coke li {
    list-style: none;
    display: inline-block;
    margin: 0 -77px;
    cursor: pointer;
    transition: 0.4s;
}

.small-coke li:hover {
    transform: translateY(-10px);
}

.small-coke li img {
    max-width: 250px;
}

.text {
    position: absolute;
    top: 360px;
    left: 640px;
}

.text h1 {
    font-size: 70px;
    text-transform: uppercase;
    font-weight: 900;
    color: #252424;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    height: 150px;
    width: 900px;
}

.text h1 .header {
    position: absolute;
    bottom: 25px;
}

.text h2 {
    position: absolute;
    font-family: 'Josefin Sans', sans-serif;
    top: 100px;
    left: 80px;
    color: #f4f2ec;
    font-size: 100px;
    font-weight: 700;
}

.text p {
    width: 400px;
    font-size: 12px;
    margin-top: 45px;
    margin-left: 50px;
    position: relative;
    height: 110px;
    color: #555555;
    font-weight: 600;
}

.media {
    position: absolute;
    bottom: 210px;
    left: 40px;
}

.media ul {
    position: absolute;
    list-style: none;
}

.media ul li {
    color: #F50D89;
    padding: 10px 0;
}
.media ul li:hover {
    color: #0a0909;
}