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

html, body{
    height: 100%;
    width: 100%;
    font-family: mona-sans, sans-serif;
}

#main{
    height: 100%;
    width: 100%;
    background-color: #FFFFFF;
    color: black;
}

.navbar{
    height: 10%;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 50px;

}

#nav-img img{
    height: 50px;
    width: auto;
    padding-bottom: 5px;
}

#nav-center {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin-left: 80px;
    font-size: 14px;
}

#nav-center a{
    text-decoration: none;
    font-weight: 500;
    color: black;
}

#nav-signin{
    margin-right: 50px;
    margin-left: auto;
}

#nav-signin button{
    padding: 16px 20px;
    border-radius: 50px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.1s ease;
}

#signup-btn{
    background-color: #FFFFFF;
}

#login-btn{
    background-color: #000000;
    color: white;
}

#signup-btn:hover{
    color: rgb(117, 117, 117);
}

#login-btn:hover{
    background-color: rgb(78, 77, 77);
}

.hero-section{
    height: 60%;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 50px;
    padding: 15px 80px;
}

.hero-left{
    height: 100%;
    width: 50%;
}

.hero-left h1{
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-left p{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: rgb(92, 91, 91);
}

.hero-right{
    height: 100%;
    width: 50%;
    border-radius: 42px;
}

.hero-right video{
    height: 100%;
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

#hero-button{
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

#hero-button button{
    padding: 10px 18px;
    border-radius: 50px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background-color: #FFFFFF;
    transition: all 0.2s ease;
}

#hero-button #shorts-btn{
    background-color: #424242;
    color: white;
}

#hero-button i{
    font-size: 18px;
    font-weight: 400;
    margin-right: 5px;
}

#hero-button button:hover{
    background-color: rgba(216, 215, 215, 0.563);
}

.hero-search{
    background-color: #bababa;
    width: 80%;
    padding: 10px 18px;
    margin-top: 30px;
    border-radius: 50px;
    border: 2px solid #ea4c8900;
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.1s ease;
}

.hero-search p{
    font-size: 14px;
    color: rgb(82, 82, 82);
    font-weight: 300;
}

.hero-search i{
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;  
    background-color: #EA4C89;
    border-radius: 50px;
    padding: 8px 8px;
}

.hero-search:hover {
    border: 2px solid #ea4c8942;
    cursor: pointer;
}

#tags{
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#tags h4{
    font-size: 14px;
    padding-left: 5px;
    font-weight: 600;
}

#tags p{
    font-size: 12px;
    padding: 4px 10px;
    border: 1px solid rgba(155, 154, 154, 0.369);
    border-radius: 20px;
    transition: all 0.1s ease;
}

#tags p:hover{
    background-color: rgba(216, 215, 215, 0.271);
    cursor: pointer;
}

.dashboard-section{
    height: 950px;
    width: 100%;
    margin-top: 50px;
    padding: 10px 80px;
}

#dashboard-nav{
    height: 10%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#dashboard-nav h4{
    font-size: 16px;
    font-weight: 700;
    padding: 8px 12px;
    border: 1px solid rgba(155, 154, 154, 0.369);
    border-radius: 5px;
    font-weight: 400;
}

#dashboard-nav a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: black;
    margin-right: 10px;
    margin-left: 10px;
    transition: all 0.1s ease;
}

#dashboard-nav a:hover{
    color: #EA4C89;
}

.dashboard-cards-section{
    height: 50%;
    width: 100%;
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.dashboard-cards-section .cards{
    height: 250px;
    width: 300px;
    background-color: #F2F2F2;
    border: 5px solid #e8699a18;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.dashboard-cards-section .cards img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.cards #cards-content{
    height: 30%;
    width: 100%;
    background: linear-gradient(transparent,rgba(0, 0, 0, 0.387), transparent);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    color: white;
    position: absolute;
    bottom: -30%;
    transition: all 0.3s ease;
}

#cards-icons i{
    font-size: 18px;
    font-weight: 200;
    padding: 4px 4px;
    border-radius: 50px;
    color: #000000;
    margin:2px;
    background-color: #FFFFFF;
}


.cards:hover #cards-content{
    bottom: 0;
    cursor: pointer;
}

.footer{
    height: 30%;
    width: 100%;
}

#footer-nav{
    height: 35%;
    width: 100%;
    padding: 10px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#footer-nav img{
    height: 75px;
    width: auto;
    padding-bottom: 5px;
}

.footer #footer-links a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-right: 10px;
    margin-left: 10px;
}

.footer #footer-logo i{
    font-size: 24px;
    font-weight: 400;
    color: #000000;
}

.footer #footer-foot{
    height: 30%;
    width: 100%;
    margin-top: 60px;
    padding: 10px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#footer-foot #foot-left{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#footer-foot #foot-right{
    display: flex;
    align-items: center;
    gap: 10px;
}

#footer-foot #foot-right a{
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    color: #4241419c;
}

#footer-foot p{
    font-size: 14px;
    font-weight: 400;
    color: #4241419c;
    margin-right: 10px;
    margin-left: 10px;
}