/*
Theme Name: Le Becavin
Description: Thème WordPress ultra-light pour Le Becavin
Version: 1.0
Author: Le Becavin
*/

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

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #002349;
}

.homepage-container {
    text-align: center;
    max-width: min(400px, 90vw);
	width: 100%;
    padding: 20px;
}

.homepage-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #C4901C;
    transition: transform 0.3s ease;
}

.homepage-link:hover {
    transform: scale(1.05);
}

.homepage-image {
 	width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	padding: 10px;
}

.homepage-text {
    font-size: 24px;
    font-weight: bold;
    color: #C4901C;
    margin-top: 20px;
}
