* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background-image: url(background.jpeg);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}

body:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000;
    opacity: 0.5;
}

.back-to-home {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 20px;
    text-align: right;
}

.back-to-home a {
    display: inline-block;
    font-size: 14px;
    color: #000;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
}

.back-to-home a:hover {
    color: #fff;
    background: #ff0043;
    box-shadow: 0 0 10px 0 rgb(255 0 67 / 50%);
    transform: translateY(-5px);
}

.ftp-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
    padding: 100px 20px;
    overflow-y: auto;
}

.ftp-wrap a {
    display: inline-block;
    font-size: 22px;
    color: #000;
    background-color: #fff;
    padding: 20px 20px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
    width: 200px;
}

.ftp-wrap a:hover {
    color: #fff;
    background: #ff0043;
    box-shadow: 0 0 20px 5px rgb(255 0 67 / 50%);
    transform: translateY(-10px);
}

.ftp-wrap .btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 100%;
}