* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.bg-img {
    background-image: url('./images/billdropper-bkg-2560x1292.jpg');
    background-position: top;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.bg-img img {
    width: 20%;
    position: relative;
    top: 50px;
}

@media (max-width: 768px) {
    .bg-img img {
        width: 50%;
        position: relative;
        top: 50px;
    }
}
