body {
    font-family: 'Open Sans', sans-serif;
    background-color: rgb(200,200,200);
    margin: 0px;
}

.wrapper {
    max-width: 1600px;
}

img {
    width: 100%;
}

header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}

header>.wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

header>.wrapper>a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: rgb(50,50,50);
    gap: 0.5rem;
}

header>.wrapper>a>h2 {
    font-family: 'Cinzel', serif;
}

header>.wrapper>a>img {
    width: 4rem;
    align-self: center;
}

header>.wrapper>nav {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

header>.wrapper>nav>a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    text-decoration: none;
    color: rgb(50,50,50);
    gap: 0.5rem;
}

header>.wrapper>nav>a:hover {
    color: #efb572;
}

header>.wrapper>nav>a>span {
    color: #efb572;
    font-size: 2rem;
}

main {
    background-image: url(/static/OscarTruck.jpg);
    background-size: cover;
    background-position: center;
    height: 95vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

main>div {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    background: rgba(0,0,0,0.5);
    background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.8));
}

#Cents{
    font-family: 'Cinzel', serif;
    color: #efb572;
    font-size: 6rem;
    margin-top: -5rem;
    text-align: center;
    margin-right: 10rem;
}
