#showcase{
    background-image: url(../images/background.jpg);
    height: 100vh;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    padding: 0px 20px;
}

#showcase .button{
    text-decoration: none;
    color: aliceblue;
    border: aliceblue 1px solid;
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 20px;
}

#showcase .button:hover {
    background: aliceblue;
    color: black;
    
}