*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Roboto', 'Arial', sans-serif;
}

body{
    font-size: 16px;
    letter-spacing: .15em;

    background-color: #373634;

}
a,
a:visited,
a:hover,
a:active {
    color: white;
}
.main-container
{
    display: grid;
    justify-content: center;
}
.main{
    display: inline-grid;
    grid-template-columns: 1fr auto;
    justify-content: center;
    align-content: center;
}
@media screen and (max-width: 750px){
    .main{
        grid-template-columns: 1fr;
    }
    body{
        font-size: 12px;

    }
}
@media screen and (max-width: 500px){
    body{
        font-size: 8px;
    }
}
.logo{
    background-color: #373634;
    padding: 30px;
    justify-self: center;
    display: grid;
    justify-content: center;
    align-content: center;
    position: relative;
}
.logo img{
    width: 450px;
    max-width: 100%;
}
.logo a{
    text-align: center;
    font-size: 1.5em;
}
.logo .opening   {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%) rotate(-20deg);
    font-family: "Times New Roman", Times, serif;
    font-style: italic;
    font-size: 2.5em;
    font-weight: 600;
color: white;
    text-shadow: -5px 5px 0px gray;
    /*transform: ;*/
}

.description {
    color: white;
    font-weight: 400;
    font-size: 1.5em;
    display: grid;
    justify-content: flex-start;
    align-content: center;
    padding: 30px 100px 30px 30px;
}

