* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
}

body {
    background-color: #3d3d3d;
}

.central-container {
    margin: 0 auto;
    width: 70vw;
    height: 100vh;
    max-width: 1800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lr-logo {
    width: 100%;
    filter: drop-shadow(8px 2px 6px rgba(0, 0, 0, 0.6));
}

.central-container > h2 {
    font-weight: 600;
    text-transform: uppercase;
    color: #dadada;
    align-self: center;
    margin: 40px 0;
    font-size: 35px;
}

.central-container > h3 {
    font-weight: 600;
    color: #b8b8b8;
    align-self: center;
    margin: 40px 0;
}

@media only screen and (max-width: 600px) {
    .central-container h2 {
        font-size: 20px;
    }

    .central-container > h3 {
        font-size: 16px;
    }
}