body {
    margin: 0;
    font-family: 'Montserrat';
    font-weight: 500;
    scroll-behavior: smooth;
    width: 100vw;
    overflow-x: hidden;
}

img {
    margin: 16px;
}

p {
    margin: 0;
}

a {
    color: #537c78;
    text-decoration: none;
}

section {
    margin-left: 128px;
    margin-right: 128px;
    margin-bottom: 32px;
    text-align: justify;
}

.last-updated {
    font-size: 20px;
    margin: 32px 128px;
    text-align: start;
}

.delete-image {
    width: 500px;
    border: 1px solid grey;
}

h1,
h2,
h4 {
    margin: 16px 0;
    text-align: start;
    color: #537c78;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.download-app-content {
    min-height: 80vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

}

.download-app-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.download-button-container {
    position: relative;
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


.download-app-display {
    width: 500px;
    height: 500px;
    position: relative;
}


.alternate-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.app-download-button {
    width: 256px;
}

@media (max-width: 1200px) {
    .download-app-content {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .download-app-display {
        width: 90vw;
        height: 90vw;
    }

    .download-button-container {
        flex-direction: column;
    }

    .app-download-button {
        width: 70vw;
        align-self: center;
    }
}

@media (max-width: 896px) {
    section {
        margin-left: 64px;
        margin-right: 64px;
        margin-bottom: 32px;
    }

    .last-updated {
        margin-left: 64px;
        margin-right: 64px;
    }
}

@media (max-width: 600px) {
    section {
        margin-left: 16px;
        margin-right: 16px;
        margin-bottom: 32px;
    }

    .last-updated {
        margin-left: 16px;
        margin-right: 16px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }



    .delete-image {
        width: 80vw;
        border: 1px solid grey;
    }
}