*{
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    margin: 0px;
    padding: 0px;

}


.showcase{
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}
.logo{
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    z-index: 50;

}
.web{
    font-size: 100px;
    margin: 0px;
    padding: 0px;
}
.under{
    font-weight: lighter;
        font-size: 30px;
        letter-spacing: 3px;
        line-height: .35;
        margin: 0px;
        padding: 0px;
        margin-bottom: 20px;
        }


.video-container{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;

}
.video-container video{
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content{
    z-index: 10;
    color: white;
    padding: 100px;
    position: absolute;
    top: 15px;
}
.btn{

   display: inline-block;
   padding:5px 15px;
   background-color: ghostwhite;
   color: black;
   border: solid 1px white;
   border-radius: 5px;
   cursor: pointer;
}

.btn:hover{
    color:white;
    background-color: grey;
}
#about{
    padding: 40px;
    text-align: center;

}
#about p{
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
    text-align: justify;


}
#about h3{
    margin: 30px 0px;
}

@media screen and (max-width: 650px){

.web{
    font-size: 80px;
    margin: 0px;
    padding: 0px;
}
.under{
    font-weight: lighter;
        font-size: 25px;
        letter-spacing: 2px;
        line-height: .35;
        margin: 0px;
        padding: 0px;
        margin-bottom: 20px;
        }


}

@media screen and (max-width: 550px){

.web{
    font-size: 70px;
    margin: 0px;
    padding: 0px;
}
.under{
    font-weight: lighter;
        font-size: 20px;
        letter-spacing: 1px;
        line-height: .35;
        margin: 0px;
        padding: 0px;
        margin-bottom: 20px
        }
    .video-container video{
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    position: absolute;
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
}
#about p{
    font-size: 1.1rem;
    max-width: 500px;
    margin: auto;
    


}
    
    
    
    
    
    }

    @media screen and (max-width: 480){
    .video-container video{
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translate(-50%, -50%);
}
#about p{
    font-size: 1.1rem;
    max-width: 300px;
    margin: auto;
    


}

    }
