* {
    margin: 0;
    padding: 0;
}

.container {
    padding-top: 20px;
    padding-bottom: 20px;
}



.box {
    position: relative;
    top: 120px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: #D2D2EB;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 20px 30px rgb(23, 32, 90);;
    border: 1px solid #F2EAE4;
    padding: 20px;
    margin-bottom: 50px;
}

.box:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.5s;
    pointer-events: none;
}

.box:hover:before {
    left: -50%;
    transform: skewX(-5deg);
}

q{
    text-align: center;
}

.box .content {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid #f0a591;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(9, 0, 0, 0.5);
    justify-content: center;

}

.box span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    box-sizing: border-box;
    border: 2px solid
}

.box span:nth-child(1) {
    transform: rotate(0deg);
}

.box span:nth-child(2) {
    transform: rotate(90deg);
}

.box span:nth-child(3) {
    transform: rotate(180deg);
}

.box span:nth-child(4) {
    transform: rotate(270deg);
}

.box span:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: black;
    animation: animate 4s linear infinite;
}

@keyframes animate {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }
    50% {
        transform: scaleX(1);
        transform-origin: left;
    }
    50.1% {
        transform: scaleX(1);
        transform-origin: right;

    }

    100% {
        transform: scaleX(0);
        transform-origin: right;

    }


}


h1{
    font-family: "Dancing Script";
    font-size: 50px;
}

.button {
    position: relative;
    display: block;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    margin-top: 100px;
    height: 30px;
    width: 100%;
    max-width: 150px;
    line-height: 30px;
    font-family: 'Helvetica';
    text-decoration: none;
    overflow: hidden;
    font-size: 14px;
    color: darkgreen;
    text-transform: uppercase;
    cursor: pointer;
    background: #fff;
    border-left: 2px solid darkgreen;
}
.button span {
    position: absolute;
    transition: all 200ms ease-in-out;
    /* horizontal */
    /* horizontal - small */
}
.button span.line-1 {
    top: 0;
    left: 0;
    width: 158px;
    height: 2px;
    background: darkgreen;
    transform: translateX(-48px);
}
.button span.line-2 {
    bottom: 0;
    right: 0;
    width: 130px;
    height: 2px;
    background: darkgreen;
    transform: translateX(-25px);
}
.button span.line-3 {
    top: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: darkgreen;
    transform: translateX(20px);
}
.button span.line-4 {
    bottom: 0;
    right: 0;
    width: 100px;
    height: 2px;
    background: darkgreen;
    transform: translateX(95px);
}
.button span.line-5 {
    bottom: 0;
    right: 0;
    width: 2px;
    height: 50px;
    background:darkgreen;
    transform: translateY(0px);
}
.button span.line-6 {
    top: 0;
    right: 0;
    width: 2px;
    height: 8px;
    background:darkgreen;
    transform: translateY(-48px);
}
.button:hover .line-1 {
    transform: translateX(0px);
}
.button:hover .line-2 {
    transform: translateX(-65px);
}
.button:hover .line-3 {
    transform: translateX(60px);
}
.button:hover .line-4 {
    transform: translateX(55px);
}
.button:hover .line-5 {
    transform: translateY(44px);
}
.button:hover .line-6 {
    transform: translateY(-2px);
}
.presentation{
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
    text-align: center;
}

.vitrine{
    width: 350px;
    height: 197px;
}

.draw{
    width: 150px;
    height: auto;
    margin: 70px;
}
.draw {
    transition: transform 0.5s ease;
}

.draw:hover {
    transform: rotate(360deg);
}
.dessin{
    text-align: center;
    justify-content: center;
}

