
main{
    /* centre to middle of screen */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 4rem;
    animation: slideIn 1s ease-in-out;
}
   
.title{
    max-width: 80%;
    height: auto;
}

.sub-title {
    border-top: .1rem solid #fff;
    padding: 1rem 4rem;
    text-align: center;
    text-decoration: none;
}


.why{
    text-align: center;
}


.why a{
    color: #fff;
    text-decoration: none;
}

.copyright {
    margin-top: 50px;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2rem 4rem;
}

.copyright p{
    margin-top: 10px;
}

.copyright ul {
    text-align: left;
    display: inline-block;
    margin-left: 0;
    margin-top: 10px;
}

.copyright li {
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
}


