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

body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    background: #f8f8f8;
    color: #111;
}

.container {
    display: flex;
    height: 100vh;
}

/* LEFT IMAGE */
.left {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.left img {
    width: 70%;
    max-width: 500px;
}

/* RIGHT CONTENT */
.right {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    text-align: center;
}

h1 {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

h2 {
    font-size: 22px;
    font-weight: 300;
    color: #aeaeae;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.content p {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.7;
    margin: 20px auto;
    color: #333;
}

/* spacing between sections */
.en {
    margin-top: 40px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    transition: all 0.25s ease;
}

/* PRIMARY (FR) */
.btn.primary {
    background: #000;
    color: #fff;
}

.btn.primary:hover {
    background: #333;
}

/* SECONDARY (EN) */
.btn.secondary {
    border: 1px solid #000;
    color: #000;
    background: transparent;
}

.btn.secondary:hover {
    background: #000;
    color: #fff;
}

/* LIENS GLOBAUX */
a.link {
    color: #dc4472;
    text-decoration: none;
    position: relative;
    transition: color 0.25s ease;
}

/* underline fin et élégant */
a.link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: #dc4472;
    transition: width 0.25s ease;
}

/* hover */
a.link:hover::after {
    width: 100%;
}

/* hover léger */
a.link:hover {
    color: #bb0916;
}