@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,700;0,800;0,900;1,600&display=swap');

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

html,body{
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    
    color: #fff;
}

.background{
    position: absolute;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fe8078;
    z-index: -1;
}

.nav{
    width: 100%;
    height: 80px;
    position: absolute;
}

.logo{
    font-size: 22px;
    margin: 0.2em 2em;
    line-height: 80px;
    position: absolute;
}

.menu {
    position: absolute;
    height: 80px;
    right: 120px;
}

.menu ul{
    list-style:  none;
}

.menu ul li{
    display: inline-block;
    margin: 2em 0;
    padding: 0 30px;
    font-size: 15px;
    font-weight: 500;
}

.menu ul li a{
    text-decoration: none;
    color: #fff;
}

.cart {
    position: fixed;
    font-size: 20px;
    margin: 0.2em 2em;
    line-height: 80px;
    right: 20px;
}

.hero{
    position: absolute;
    height: 100%;
    width: 100%;
}

.hero .circle{
    position: relative;
    width: 450px;
    height: 450px;
    background-color: #fc928a;
    top: 20%;
    left: 68%;
    border-radius: 50%;
}

.hero img{
    position: absolute;
    right: 5%;
    top: -15%;
    transform: scale(0.7);
    /* z-index: 5; */
}

.blocks{
    display: flex;
    font-size: 240px;
    font-weight: bolder;
    color: #fc928a;
}

.tag-line{
    position: fixed;
    top: 165px;
    left: 160px;
    padding: 10px 30px;
    font-size: 1.8em;
    line-height: 1.2em;
}

.year {
    position: absolute;
    top: 70%;
    left: 10%;
    /* padding: 10px 30px; */
    font-size: 1.8em;
    line-height: 1.2em;
}

.title{
    position: absolute;
    right: 8%;
    bottom: 35%;
    z-index: 2;
}

.title-container {
    display: flex;
}

.title-item{
    letter-spacing: 50px;
    font-weight: 900;
    font-size: 280px;
    color: #fff;
    opacity: 0.85;
}

.content{
    position: absolute;
    top: 75%;
    left: 10%;
    width: 36%;
    font-weight: 400;

    letter-spacing: 1px;
    font-size: 14px;
    z-index: 2;
}

button {
    position: relative;
    left: 0;
    top: 40px;
    opacity: 0;
    margin-top: 6px;
    background-color: #ee403e;
    padding: 20px 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: 0.4s;
    color: #fff;
}

button:hover{
    background-color: #fc928a;
    color: #000;
}

.media{
    position: absolute;
    bottom: 30%;
    left: 2em;
}

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

.media ul li {
    cursor: pointer;
    padding: 10px 20px;
}

.media ul li a{
    color: #fff;
    font-size: 20px;
}