@charset="utf-8";

/*fuente importada de google fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

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

html {
    height: -webkit-fill-available;
}

body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    background-color: rgb(124,0,0);
    font-family: "poppins", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

img {
    width: 100%;
    text-align: center;
}

.gif {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
}
