@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

html {
    height: 100%;
}

body {
    background-color: rgb(40, 50, 53);
    padding: 0%;
    margin: 0%;
    font-family: "Poppins";
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

h1 {
    color: aliceblue;
    text-align: center;
    font-size: 48px;
}

div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

img {

    max-width: 100%;
    height: auto;
}
footer {
    background-color: #333;
    width: 100%;
    display: flex;
    margin-top: auto;
}

footer p {
    text-align: center;
    font-family: "Poppins";
    font-size: 16px;
    color: aliceblue;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
