* {
    padding: 0;
    margin: 0;
}

body {
    font-family: "Montserrat", sans-serif;
}

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

section {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    transition: all .5s;
}

section h1,
section p {
    width: 50%;
}

section:hover {
    flex: 2;
}

section h1 {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 12px 32px;
}

section p {
    display: inline-block;
}

.scaletta {
    background: url('img/scaletta.jpg') rgba(0, 159, 236, 0.2);
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designer {
    background: url('img/designer.jpg') #d2ff0917;
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
}


.developer {
    background: url('img/developer.jpg') #09ff7817;
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
}