/* global */

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: oswald, sans-serif;
    background-color: var(--secondary-color);
    color: var(--font-color);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

p,
span {
    font-family: owners-text, sans-serif;
}

/* end of global */

.quote-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote-embed {
    width: 100%;
    display: flex;
    justify-content: center;
}

.quote-embed iframe {
    width: 100%;
    max-width: 640px;
    height: 800px;
    border: none;
}

.quote-note {
    margin-top: 1.5rem;
    text-align: center;
}

.quote-note a {
    color: inherit;
    font-weight: 600;
}

@media(min-width: 1366px) {
}

@media(max-width: 1366px) and (min-width: 1024px) {
}

@media(max-width: 1024px) and (min-width: 769px) {
}

@media(max-width: 769px) {
    .quote-embed iframe {
        max-width: 100%;
    }
}