body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: orangered;
    display: flex;
    flex-direction: column;
    margin: 1rem;
    gap: 1rem;
    font-size: 18px;
    line-height: 1.4;
    overflow-x: hidden;
}

h1 {
    padding: 0;
    margin: 0;
    padding-bottom: 1rem;
    padding: 0;
    font-size: 1.8rem;
}

p {
    margin: 0;
    text-indent: 20px;
}

/************** CARNET ***************/
.carnet {
    position: relative;
    background-color: white;
    padding: 1.5rem 2rem;
    border-radius: 23px;
    box-sizing: border-box;
    max-width: 100%;
    gap: 1rem;
    border: 1px solid rgb(185, 185, 185);

    background-size: cover;
    margin: auto;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 500px;

    transition: all .5s ease-in-out;
}

.carnet div {
    display: flex;
    gap: 1rem;
    align-items: end;
}

/************** CONTACT ***************/
.contacts {
    display: flex;
    gap: 10px;
    margin: auto;
}

/************** BUTTONS ***************/
button {
    border-radius: 999px;
    padding: 12px 16px;
    border: 1px solid rgb(185, 185, 185);
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;

    font-size: 18px;
    color: black;
}

button:hover {
    cursor: pointer;
    background-color: rgb(208, 208, 215);
}

a,
a:visited,
a:focus {
    color: inherit;
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

/************** IMAGE ***************/
.pablo {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    transition: all .5s ease-in-out;
    justify-content: center;
    align-items: center;
}

img {
    width: 100px;
    border-radius: 20px;
    border: 1px solid rgb(185, 185, 185);
    transition: all .5s ease-in-out;
}

#luck {
    position: absolute;
    font-size: 2rem;
    font-weight: 600;
    opacity: 0;

    color: #6ed322;
    -webkit-animation: goodluck 1s ease-in-out;
    animation: goodluck 1s ease-in-out;
}

@-webkit-keyframes goodluck {
    0% {
        opacity: 0;
        transform: scale(1) translateY(10px);
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1.1) translateY(-30px);
    }
}

@keyframes goodluck {
    0% {
        opacity: 0;
        transform: scale(1) translateY(10px);
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1.1) translateY(-30px);
    }
}