* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: normal;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    padding: 20px; /* Ajouté pour du padding sur mobile */
	overflow: hidden;
	position: relative;
}
body::after{
	content:'';
	position:fixed;
	top:-50%;
	left:-50%;
	width:200%;
	height:200%;
	background:url('logo-bg.png') 0 0 repeat;
	z-index:-1;
	transform:rotate(-30deg);
	opacity:0.3;
	background-size:200px;
}

.submit{
    display: inline-block;
    background-color: #222;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}
.submit:hover {
    background-color: #444;
}

.container {
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%; /* Pour que le bloc prenne tout l'espace disponible sur mobile */
}

.logo img {
    width: 10vw;
    min-width: 50px;
    max-width: 120px;
}

.presentation h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.presentation p {
    margin-bottom: 30px;
    font-size: 16px;
    color: #666;
}

.btn-download {
    display: inline-block;
    background-color: #222;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.btn-download:hover {
    background-color: #444;
}

.link-download {
	color: #222;
	font-size: 14px;
}

/* Styles responsive pour les petits écrans */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .logo img {
        max-width: 100px; /* Réduit la taille du logo sur mobile */
    }

    .presentation h1 {
        font-size: 20px; /* Réduit la taille du titre */
    }

    .presentation p {
        font-size: 14px; /* Réduit la taille du texte de présentation */
    }

    .btn-download {
        padding: 10px 20px; /* Réduit la taille du bouton */
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-width: 100px; /* Réduit davantage la taille du logo */
    }

    .presentation h1 {
        font-size: 18px; /* Ajustement pour très petits écrans */
    }

    .btn-download {
        padding: 8px 16px; /* Réduction supplémentaire du bouton */
        font-size: 12px;
    }
}
