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

body{
    animation: fadeInAnimation ease 1.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;  
}

.img{
    width: 100%;
}

h1{
    text-align: center;
}

.stores-buttons{
    background-color: black;
    text-align: center;
    padding: 15px;
}

.store-button{
    text-decoration: none;
}

.poweredBy{
    width: 200px;
}

.footer {
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.message {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeInAnimation {
    0% {opacity: 0;}
    100% {opacity: 1;}
}