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

:root {
  --deep-blue-100: #212683;
  --deep-blue-80: #699BF7;
  --deep-blue-50: #D9E5F8;
  --deep-blue-link: #000dff;

  --dream-green: #9DCC96;
  --puppy-pink: #F2A7C5;

  --gotham-noire: #191919;
  --une-legende: #555555;
}

body {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    background-color: var(--deep-blue-50);
}

#all {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
    color: var(--deep-blue-100);
    background-color: var(--deep-blue-50);
}

#header, #footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
}

/* */

#header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    height: 10vh;
}

#logo {
    height: 100%;
    display: flex;
    align-items: center;
}

#logo img {
    height: 70%;
    width: auto;
}

#stores {
    display: flex;
    gap: 1rem;
}

#stores a {
    display: flex;
    align-items: center;
    height: 100%;
    transition: transform 0.3s;
}

#stores a:hover {
    transform: scale(1.1);
}

#stores img {
    height: 60%;
    width: auto;
}

#content {
    width: 100%;
    height: 85%;
    display: flex;
    flex-direction: row;
}

#image, #texte {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: cover;
}

#texte {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 20px 10% 20px 5%;
}

#texte h2 {
    font-family: "Lilita One", sans-serif;
    font-size: 3.5em;
    margin-bottom: 10px;
}

#texte h1 {
    font-family: "Lilita One", sans-serif;
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 400;
}

#texte p {
    font-size: 1em;
    line-height: 1.5;
    font-weight: 300;
}

.footer-section {
    display: flex;
    align-items: center;
}

#footer-left span {
    margin-right: 15px;
    font-weight: bold;
}

#footer-left a {
    margin-right: 15px;
    text-decoration: underline;
    color: var(--deep-blue-100);
    font-size: 1em;
    transition: transform 0.3s;
}

.footer-copyright a {
    margin-right: 0px !important;
}

#footer-left a:hover {
    text-decoration: underline;
    transform: scale(1.1);
}

#footer-right a {
    margin-left: 25px;
}

#footer-right img {
    height: 24px;
    width: 24px;
    transition: transform 0.3s;
	filter: brightness(0) saturate(100%) invert(12%) sepia(70%) saturate(300%) hue-rotate(200deg) brightness(90%) contrast(100%);
}

#footer-right img.linkedin {
	filter: brightness(0) saturate(100%) invert(12%) sepia(70%) saturate(300%) hue-rotate(200deg) brightness(90%) contrast(100%);
}

#footer-right img.instagram {
	filter: brightness(0) saturate(100%) invert(12%) sepia(70%) saturate(300%) hue-rotate(200deg) brightness(90%) contrast(100%);
}

#footer-right img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {

    .footer-copyright {
        display: none;
    }
    
    #stores {
        gap: 0.5rem;
    }
    
    #stores img {
        height: 50%;
    }
    
    #stores a {
        height: 100%;
    }

    #logo img {
        height: 70%;
        width: auto;
    }
    
    #download img {
        height: 55% !important;
        width: auto;
    }
    
    #texte h2 {
		font-size: 2.5em;
	}
	
	#texte h1 {
		font-size: 1.5em;
	}
	
	#texte p {
		font-size: 1em;
	}
	
	#header, #footer {
        flex-direction: row;         
        justify-content: space-between; 
        padding: 0 5%;
    }

    #footer-right img {
        height: 20px;
        width: 20px;
    }

    #content {
        flex-direction: column;
        height: 90%;
    }

    #image, #texte {
        width: 100%;
        height: 50%;
    }

    #image img {
        max-width: 100%;
        max-height: 100%;
    }

    #image {
        margin-top: 2.5em;
    }

    #texte {
        padding: 15px 5%;
    }

    #footer {
        padding-bottom: 1.5em;
    }

    #footer-left a {
        margin-right: 15px;
    }

    #footer-right a {
        margin-left: 20px;
    }
}