*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    color:#fff;

    /* Background image */
    background-image:url("https://thecateringcoclub.co.uk/TCC_holding_page_page-0001-Photoroom.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

.logo img{
    max-width:220px;
    width:100%;
    display:block;
    margin:0 auto 10px auto;
}

.page-wrapper{
    width:100%;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative; /* important */
}

.company-info{
    position:absolute;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);
    font-size:14px;
    line-height:1.6;
    color:#fff;
    text-align:center;
}


.content{
    max-width:700px;
    padding:40px;
}

.logo{
    font-size:70px;
    letter-spacing:10px;
    font-weight:700;
    margin-bottom:40px;
}

.logo span{
    display:block;
    font-size:28px;
    letter-spacing:12px;
    margin-top:10px;
}

.contact{
    margin-bottom:40px;
}

.contact a{
    display:block;
    font-size:20px;
    color:#fff;
    text-decoration:none;
    margin:10px 0;
}

.contact a:hover{
    text-decoration:underline;
}



.company-number{
    margin-top:10px;
}

@media(max-width:600px){

.logo{
    font-size:45px;
}

.logo span{
    font-size:20px;
}

.contact a{
    font-size:18px;
}

}