* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    margin: 0 auto;
    background: #F5F1ED;
    line-height: 2.5rem;
}

main,
.footer-content {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #0a0a0d;
    height: 120px;
    display: flex;
    padding: 0.7rem;
    align-items: center;
}

nav {
    width: 80%;
    margin: 0 auto;
    display: flex;
    height: 80%;
    width: 80%;
    gap: 2rem;
}

.header-icon {
    border-radius: 0.5rem;
    transition: box-shadow 0.5s ease-in-out;
}

.header-icon:hover {
    box-shadow: 0 0 3px #323232;
}

.last-updated-text {
    margin-top: 1rem;
}

.info {
    margin-bottom: 1rem;
}

h1 {
    margin-top: 2rem;
}

li {
    margin: 0 0 1rem 1rem;
}

li::marker {
    font-weight: bold;
}

footer {
    background: #252323;
    color: #fff;
}

.social-media-icons{
    display: flex;
    gap: 2rem;
}

.footer-content svg{
    width: 2rem;
    height: 2rem;
}

.play-store-img{
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
}
.download-container{
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media screen and (max-width: 768px) {

    header {
        position: sticky;
        height: 100px;
        top: 0;
    }

    nav {
        height: 70%;
        justify-content: space-around;
    }

}