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

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

body{
    background-color: #F9F9F9;
    height: 100vh;
    width: auto;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem;
}

nav ul{
    display: flex;
}

nav ul li{
    font-family: Roboto;
    margin: 1rem;
    font-size: 20px;
    list-style: none;
    font-weight: 500;
}

.req{
    color: #71A894;
}

.landing{
    width: 100%;
    height: 100%; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 7.5rem;
}

.left{
    margin: 0 0 3rem 5rem;
    width: 42vw;
}

.title{
    font-size: 64px;
    font-family: Playfair Display;
    font-weight: 900;
    margin: 0 0 2rem 3rem;
}

.desc{
    font-size: 24px;
    font-family: Roboto;
    font-weight: 300;
    margin: 0 0 3rem 3rem;
}

.btn{
    text-decoration: none;
    font-size: 24px;
    color: #F9F9F9;
    background-color: #71A894;
    padding: 24px 20px;
    border-radius: 8px;
    margin: 1rem 0 0 3rem ;
}

.imagine{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.midtitle{
    font-size: 64px;
    font-family: Playfair Display;
    font-weight: 900;
    margin: 3rem;
}

.grid{
    display: flex;
    grid-template-columns: 3, 1fr;
    margin-bottom: 3rem;
}

.card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 430px;
    height: 340px;
    background-color: #fff;
    margin: 3rem;
    box-shadow: 2.5px 2.5px 5px rgba(0, 0, 0, .2);
}

.subdesc{
    font-size: 18px;
    text-align: center;
    font-family: Roboto;
    font-weight: 300;
    margin: 1rem;
    margin-bottom: 1rem;
}

.text{
    margin-bottom: 10rem;
}

.subtitle{
    font-size: 24px;
    font-weight: 700;
    margin: .5rem;
    font-family: Roboto;
}

.start{
    width: 100%;
    height: 100%; 
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 7.5rem 3rem 3rem 3rem;
}

.middesc{
    font-size: 18px;
    font-family: Roboto;
    font-weight: 300;
}

.halftitle{
        font-size: 64px;
        font-family: Playfair Display;
        font-weight: 900;
        margin-bottom: 1rem;
}

.upvote{
    width: 100%;
    height: 100%; 
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    margin: 7.5rem 3rem 3rem 3rem;
}

.icon{
    margin-bottom: 3rem;
}

.right{
    margin-right: 5rem;
}

.upvote .left{
    margin-right: 5rem;
}

.upvote .right{
    margin-left: 5rem;
}