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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: #49E1F2;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 250px;
    height: 250px;
}

.logo-container p {
    font-size: 22px;
    color: #000;
    text-align: center;
}

h2{
    font-size: 26px;
    text-align: center;
}

main {
    flex: 1;
    padding: 3rem;
    text-align: center;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.store-buttons a img {
    width: 100%;
    height: auto;
}

footer {
    background: #49E1F2;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.social-media a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-media a img:hover {
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .store-buttons {
        max-width: 100%;
    }
}