.logo{
    width: 200px;
    height: 100px;
    object-fit: cover;
}

.icon{
    color: #ddd;
}

.hero{
    height: 110vh;
    background-image: url(../asserts/001.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: overlay;
}

.header{
    padding: 20px;
}

.nav{
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

.logo-text{
    font-weight: 600;
    color: #fff;
    font-family: "Ubuntu Mono", monospace;
}

.twitter{
    cursor: pointer;
}

.twitter:hover{
    transform: scale(1.2);
}

.hero-texts{
    margin-top: 70vh;
    text-align: center;
    padding: 20px;
}

.hero-text{
    font-weight: 700;
    color: #fff;
    font-family: "Ubuntu Mono", monospace;
    font-size: 2rem;
}

.hero-sub-texts{
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    text-align: center;
    color: #ddd;
    font-family: "Ubuntu Mono", monospace;
}

.about-us{
    font-family: "Inter", sans-serif;
    background-color: #eee;
    padding: 6rem 0;
    margin-bottom: 6rem;
}

.animation-demo{
    margin-top: 2rem;
}

.animation-demo-animation{
    height: 100vh;
    width: 100%;
}


.projects{}

.projects-display{
    display: flex;
    gap: 20px;
    padding: 20px;
}

.project{
    /* flex: 1; */
    width: 40%;
    padding: 20px;
    background-color: #ddd;
    border-radius: 10px;
}

.project-image{
    width: 100%;
}

.project-details{
    margin-top: 20px;
}

.project-name{

}

.project-description{
    margin-top: 10px;
}

.project-link{
    text-decoration: none;
}

.project-btn{
    margin-top: 20px;
    padding: 10px 20px;
    cursor: pointer;
}


.mascots{

}

.mascots-display{
    margin-top: 2rem;
    display: flex;
    gap: 2px;
}

.mascot{
    flex: 1;
    position: relative;
}

.mascot-image{
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.mascot-name{
    position: absolute;
    bottom: 0;
    padding: 20px;
    color: #fff;
}

.footer{
    background-color: black;
    text-align: center;
    padding: 20px;
}

.footer-img{
    width: 80px;
}


@media screen and (max-width: 620px) {
    .hero-text{color: red;}
    .project{width: 100%;}

    .hero-texts{margin-top: 60vh;}
}