body {
    font-family: "Work Sans", sans-serif;
    margin: 0;
    background-color: #fff;

    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}
.container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
@media (min-width: 1328px) {
    .container {
	padding-top: 5em;
    }
}
.left {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 30em;
    align-items: flex-start;
}
.legal {
    max-width: 50em;

    text-align: justify;
}

.left > img.logo, .legal > img.logo {
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    width: 50%;
    display: block;
}
.left p {
    font-size: 16px;
    line-height: 30px;
}
.left ul {
    list-style: none;
    padding: 0;
}
.left ul li {
    margin-bottom: 10px;
    font-size: 16px;
    padding-left: 5px;
    line-height:25px;
    font-weight: 400;
}
.left ul li::before {
    content: url('/assets/images/loop_icon.png');
    transform: scale(.5);

    display: inline-block; /* Ensure proper layout */
    
}
.button {
    margin-top: 30px;
    margin-bottom: 30px;
    display:block;
    text-align: center;
    width: 100%;
}
.button a {
    background-color: #3D5AFE;
    color: white;
    padding: 15px 25px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 18px;
    width:100%;
    white-space: nowrap;
}
.screenshots {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.screenshots img {
    width: calc(33% - 40px);
}
.store-buttons {
    opacity: 0;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    flex-direction: row;
    gap: 20px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    text-align: center;
}
.store-buttons a {
    flex: auto;
}
footer {
    display: flex;
    justify-content: space-around;
    margin-top: auto;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}
@media (max-width: 1328px) {
    footer {
	padding-top: 5em;
	flex-wrap: nowrap;
	flex-direction: column;
	align-content: center;
	align-items: center;
    }
    body {
	padding: 10px;
    }
}

@media (max-width: 750px) {
    .screenshots img {
	width: 80% !important;
    }
}
footer a {
    color: #adadad;
    font-size: 14px;
}

.rgpd-highlight {

    background-color: #3D5AFE;
    color: white;
    padding: 1px;
    border-radius: 16px;
    font-size: 16px;
    text-align: center;
}

.rgpd-highlight a {
    color: white;
}
