@import url('https://fonts.googleapis.com/css2?family=Itim&family=Inter&family=Jost&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Itim&family=Jua&family=Jost&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Itim&family=Comfortaa&family=Jost&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jua', sans-serif;
    color: white;
    
}

body,
html {
    width: 100%;
    height: 100%;
    background-color: #793898;
    position: relative;
}

nav{
    position:fixed;
    top: 0; /* put it at the top */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.5rem 3rem;
    background-color: #793898;
    z-index: 100;
}
#menu{
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 30px;
}

a{
    text-decoration: none;
    color: white;
    
}
#textBit{
    /* align-items: center; */
    align-self: center;
    /* grid-row-gap: 30px;
    grid-template-rows: repeat(2,1fr); */
    z-index: 34;
    /* justify-content: start; */
}
.plaintext{
    font-family: "Comfortaa";
}


a:hover {
    color: #000;
  }
  
  a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  a:hover::before {
    transform: scaleX(1);
  }
  section {
    
    width: 100%;
    height: 50%;
    background-size: cover;
    background-position: center;
}

#landing h1{
    font-size: 60px;
}

#landing{
    
    width: 100%;
    margin-top: 40px;
    height: 100%;
    align-content: center;
    text-align: center;
    display: flex;
    justify-content: center;
    overflow: hidden;

    background-color: #793898;
    

}


.bg-image{
    opacity: 0.18;
    margin-left: -150px;
    margin-bottom: -150px;
    position: absolute;
    left: 0;
    overflow: hidden;
    z-index: 1;

}
.Spacer{
    height: 15px;
}
.button{
    height: 40px;
    width: 110px;
    border-radius: 20px;
    background-color: #9550b6;
    display: inline-flex;
    align-items: center;
    justify-content: center; 
    /* align-items: center; */
    
}

#Apps{
    margin-top: 100px;
    width: 100%;
    height: 90%;
    background-color: #793898;
    z-index: 100;
    padding: 50px;

    display: flex;
    grid-template-columns: 1fr 2fr 2fr;
    
}

#Apps h1{
    font-size: 52px;
}

#App1{
    display: block;
    width: 60%;
}
#App1 p{
    font-size: larger;
}

#App2{
    margin-top: 50px;
    display: block;
    width: 100%;
    padding-left: 20px;
    justify-content: end;
}
#AppBlock{
    padding: 40px;
    justify-content: center;
    
    display: flex;
    flex-direction: column;
    
    height: 100%;
    background-color: rgba(255,255,255,.15);
    border-radius: 20px;
    

    
}
.appLogo{
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 8px;
}
#AppBlock h4, img, a{
    font-family: 'Comfortaa';
    display: inline-flex;
    align-self: center;
}

.ssShower{
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.appScreenShot{
    padding: 10px;
    overflow: hidden;
    width: 100%;
    
}



#MotionGraphics{
    margin-top: 100px;
    width: 100%;
    height: 90%;
    background-color: #793898;
    z-index: 100;
    padding: 50px;

    display: flex;
    
    
}
#MotionGraphics h1{
    font-size: 54px;
}
#videos{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px; /* Adds space between items */
    
}

#videoInBox{
    height: 150px; /* Height for a child element */

}

#Contact{
    padding: 30px;
    height: 260px;
    background-color: #1f1125;
}




#Contact h1{
    font-size: 60px;
}
footer {
    display: flex;
    justify-content: flex-end;
    background-color: #1f1125;
    padding-right: 1rem;
    padding-bottom: 0.5rem;
    gap: 1rem;
}

footer div {
    display: flex;
    align-items: center;
    padding-right: 2rem;
}