html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    text-align: left;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 100%;
    background-color: #ff0000;
    background-image: url("./background.png");
}

img {
    max-width: 40%;
}

h1 {
    font-size: 19px;
    color: rgb(220, 172, 115);
    font-family: Montserrat, Helvetica, sans-serif;
    font-weight: 600;
    line-height: 1.4;
    padding: 0;
    margin: 0;
}

h2 {
    font-size: 15px;
    line-height: 1.4;
    color: rgb(220, 172, 115);
    font-family: Montserrat, Helvetica, sans-serif;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

p {
    font-size: 16px;
    color: #333;
    font-family: Montserrat, Helvetica, sans-serif;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

small {
    font-size: 16px;
    color: #333;
    font-family: Montserrat, Helvetica, sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

a {
    font-family: Montserrat, Helvetica, sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: #777;
}

/* EDIT DESCRIPTION LINK COLOR */
a:hover {
    color: #0d96e5;
}

.section {
    width: 90%;
    max-width: 600px;
    position: relative;
    margin: 0 auto;
}

.social-spacing {
    margin-left: 16px;
    margin-right: 16px;
    white-space: nowrap;
    line-height: 1.5;
}

.clear {
    clear: both;
}

.avy {
    opacity: .95;
    width: 150px;
    height: 150px;
}
.avy:hover {
    opacity: 1;
}
.round {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%; /* future proofing */
    -khtml-border-radius: 50%; /* for old Konqueror browsers */
    -webkit-appearance: none;
}

/* EDIT LINK UNDERLINE COLOR */
.underline:hover {
    border-bottom: 1px solid #0d96e5;
}

.preul {
    border-bottom: 1px solid #eee;
}

.center-align {
    text-align: center;
}

.white {
    color: #fff;
}

.black {
    color: #000000;
}

.orange {
    color: #FF9933;
}

.light-grey {
    color: #ccc;
}

.divider {
    border-bottom: 1px solid #eee;
}

/* EDIT BUTTON BACKGROUND COLOR */
.button {
    background: rgb(255, 206, 0) ;
    opacity: .9;
    padding: 20px;
    margin: 10px auto;
    margin-bottom: 24px;
    border-radius: 30px;
    box-shadow: rgb(0 0 0) 12px 12px 0px 0px;
    transition: box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, border-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, background-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s;
}

.button:hover {
    opacity: 1;
    transform: translate(4px, 4px);
    box-shadow: rgb(0 0 0) 8px 8px 0px 0px;
}

.padding-top-50 {
    padding-top: 50px;
}
.padding-bottom-50 {
    padding-bottom: 50px;
}
.padding-bottom-100 {
    padding-bottom: 100px;
}
.padding-top-25 {
    padding-top: 25px;
}
.padding-top-15 {
    padding-top: 15px;
}

@media (max-width: 768px) {
    
}