body {
    font-family: 'Lato',sans-serif;
    margin: 0;
    box-sizing: box;
}

.container {
    display: grid;
     grid-template-columns: 35% auto;
     grid-template-rows: auto;
     grid-template-areas: "left right";
}

/* Left side */

#left {
    grid-area: left;
}

.info {
    background: white;
    color: #000000e3; 
    text-align: center;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info h1 {
    font-size: 6em;
    text-align: center;
    align-self: center;
}

.hr-lines {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.hr-text {
    flex-grow: 0;
    font-family: 'Berkshire Swash',
    cursive;
    font-weight: 400;
}

.divider {
    flex-grow: 1;
    height: 6px;
    background-color: #000000d8;
    border-radius: 4px;
}

/* Right side  */

.right {
    grid-area: right;
    display: flex;
    flex-direction: column;
}

#landing-page {
    width: 100%;
    height: 100vh;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

