*{
    margin: 0;
    padding: 0;
}

body{
    
    font-family: Arial, Helvetica, sans-serif;
   
}

#showcase{
    background-image: url(../img/landingpage.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo{
    position: absolute;
    padding-bottom: 500px;
}
.logo img{

   height: 15vh;
}

.textbody{
    background-color: #6F559B;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    width: 70%;
    margin-top: 120px;
    border: #010101 1px solid;
    border-radius: 20px;
}
h2{
    
    color: #010101;
    text-align: center;
    padding-top: 30px;
}

p{
    
    color: #010101;
    padding-top: 30px;
    text-align: center;
    padding-bottom: 30px;
    
}

#showcase .button{
    margin-top: 35px;
    text-decoration: none;
    color: #010101;
    border: #010101 1px solid;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    background-color: #9AD6CC;
    
}

