body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
}

.container {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin-top: 50px;
    width: 125px; /* Set width to 200 pixels */
    height: auto; /* Height will adjust proportionally */
}

.ig-icon {
    margin-bottom: 25px;
    width: 50px; /* Set width to 100 pixels */
    height: auto; /* Height will adjust proportionally */
}

/* Make it responsive */
@media only screen and (max-width: 768px) {
    .logo {
        width: 150px; /* Adjust width for smaller screens */
    }

    .ig-icon {
        width: 80px; /* Adjust width for smaller screens */
    }
}
