/* @import url("https://fonts.googleapis.com/css?family=Fira+Sans"); */

/* --------------------------------- Global style applied here --------------------------------- */

*{
	box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: color ease 0.3s, background-color ease 0.3s, border-color ease 0.3s, filter ease 0.3s;
	font-family: "Fira Sans", Helvetica, Arial, sans-serif;
}
html{
    height: 100vh;
}
body{
    scroll-behavior: smooth;
    text-rendering: optimizespeed;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    width: 100%;
	height: auto;
    background: radial-gradient(circle at center, #ff00cc, #7d2ae8 40%, #00c6ff 100%);
    color: #000;
    min-width: 300px;
    min-height: 100vh;
    overflow-x: hidden;
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
}
a{
    text-decoration: none;
	color: inherit;
}
img{
	width: 30px;
	height: 30px;
}

/* -------------------------------- Specific style applied here -------------------------------- */

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}
h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}
h2 {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 30px;
}

.citation-box {
    background: linear-gradient(to right, #c471f5, #fa71cd);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 512px;
    margin: 15px auto;
}
.citation-box p {
    font-style: italic;
    margin-bottom: 20px;
}
button, .btn_postuler {
    background-color: #ff00cc;
    border: none;
    padding: 10px 20px;
    color: white;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: 0.3s ease;
}
button:hover, .btn_postuler:hover {
    transform: scale(1.05);
    background-color: #ff33dd;
}
.citation-box:last-child {
    margin-bottom: 0;
}

#postuler {
    margin-left: 10px;
    margin-right: 10px;
}
