
.landing-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 176, 176, 0.829), rgba(0, 74, 74, 0.862)), /* overlay */
    url('../assets/landing/landingpic.jpg');
}

.logo img{
    width: 8rem;
    border-radius: .5rem;
}
.landing-text{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    
}
.landing-text h1{
    color: white;
    font-size: 3rem;
    text-align: center;
}
.landing-text h1 span{
    color: rgb(253, 68, 68);
}
.landing-text p{
    color: rgb(194, 194, 194);
    font-size: 1rem;
    text-align: center;
    width: 60%;
    margin-top: -1rem;  
}

.login-btn, .signup-btn{
    background-color: rgb(144, 255, 242);
    padding: .4rem 5.5rem;
    border-radius: .3rem;
    border: none;
    color: rgb(0, 46, 41);
    font-size: 1.2rem;
    font-weight: 600;
}
.landing-buttons a{
    text-decoration: none;
    color: rgb(0, 46, 41);
    transform: uppercase;
}
.login-btn:hover{
    background-color: rgb(0, 176, 176);
    color: white;
    cursor: pointer;
    transition: .3s;
}

