*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body{
    background-color: #eff4fd;
}

.present{
    margin-left: 8%;
    margin-top: 13%;
}

.present2{
    margin-left: 0;
    margin-top: 0;
    animation-duration: 0.9s;
    animation-name: trans;
}

@keyframes trans{
    from{
        margin-left: -4%;
        margin-top: -4%;
    }
    to{
        margin-left: 0;
        margin-top: 0;
    }
}

.present h1{
    font-size: 50px;
    color: #212121;
    margin-bottom: 20px;
}

.present p{
    color: #555;
    line-height: 22px;
}

span{
    color: #4E0590;
}

.download{
    background: #212121;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    display: inline-block;
    margin: 30px 0;
    border-radius: 5px;
}

.photos{
    width: 45%;
    height: 90%;
    position: absolute;
    bottom: 0;
    right: 100px;
}

.patagonia{
    position: absolute;
    width: 40vw;
    height: 99vh;
    bottom: -10%;
    left: 100px;
}

.me{
    height: 70%;
    position: absolute;
    left: 2%;
    bottom: 4%;
    border-radius: 5%;
    animation-duration: 0.9s;
    animation-name: move;
}

@keyframes move{
    from{
        left: 10%;
    }
    to{
        left: 2%;
    }
}

.allcv{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.cv {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.down{
    display: block;
    width: max-content;
    margin: 0 auto;
}

/*-----------Contact----------------------------*/

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-form button {
    padding: 0.6rem 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.cont{
    display: block;
    width: max-content;
    margin: 0 auto;
}
/*-----------Contact----------------------------*/


/*-----------Enquetes----------------------------*/
 .card-container {
     display: flex;
     flex-direction: column;
     gap: 30px;
     max-width: 900px;
     margin: auto;
     padding: 40px 20px;
 }

.card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
}

.card h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #1a237e;
}

.card a {
    text-decoration: none;
    color: #1a237e;
}

.card a:hover {
    text-decoration: underline;
}

.card p {
    font-size: 1.2em;
    color: #333;
    line-height: 1.6;
}
/*-----------Enquetes----------------------------*/