*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color:black;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.landing img{
    max-width: 100%;
    height: 100vh;
    text-align: center;
}
.links{
    background: url(./links.png);
    background-size: contain;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.links a{
    margin:5px ;
    transform: translateY(5px);
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
}
.links a:first-child{
    width: 150px;
}
.footer{
    margin-top: 50px;
    margin-bottom: 30px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer img:first-child{
    width: 250px;
}
.footer img:last-child{
    transform: translateY(-12px);
}



/*** Thank you page ***/
.thankyou{
    background: url(./thankyou.jpg);
    background-color:black;
    height: 100vh;
    width: 100vw;
    background-position: center;
    background-repeat: no-repeat;
}



