* {
    box-sizing: border-box;
}
html, body {
    margin: 0;
}
body {
    background-image: url('../media/36_elephant.jpg');
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-size: cover;
    color: white;
}
h1 {
    color: white;
    margin-top: 0px;
}
h1 .logo {
    background-color: white;
    color: black;
    padding: 10px;
}
main {
    background-color: black;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
    text-align: center;
}
.dogEar {
    position: relative;
    background: black;
    padding: 20px;
    box-sizing: border-box;
}
.dogEar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: url('../media/36_elephant.jpg') no-repeat;
    background-size: cover; /* match the main div */
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.mySelect {
    width: 100%;
}
.myRow {
    margin-top: 20px;
}
option {
    padding: 10px;
}
select {
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
}
input[type="submit"] {
    background-color: #7520E9;
    color: white;
    font-size: 20px;
    padding: 10px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
}
a {
    color:white;
}
a:hover {
    text-decoration: none;
}
footer {
    background-color: #7520E9;
    text-align: center;
    margin-top: 20px;
    border-bottom: 1px solid black;
    border-top: 1px solid black;
}
footer img {
    width: 100%;
    margin-bottom: 20px;
}
#errorMessage {
    background-color: rgb(255, 206, 206);
    border: 1px solid rgb(255, 0, 0);
    color: black;
    padding-top: 10px;
    display: none;
}
#successMessage {
    background-color: rgb(173, 255, 176);
    border: 1px solid rgb(0, 79, 30);
    color: black;
    padding-top: 10px;
    padding-bottom: 10px;
    display: none;
}

.logoLittle {
        font-size: 15px;
        display: block;
        margin-top: 20px;
    }

/* Large phones */
@media (min-width: 480px) {
    .logo {
        display: block;
    }
    
    .myFooterText {
        padding: 20px;
    }
  /* Add overrides here */
}

/* Tablets */
@media (min-width: 768px) {
  /* Add overrides here */
  .logo {
    width: 200px;
    margin: 0px auto;
  }
  .myFooterImage {
    width: 300px;
    margin: 0px auto;
  }
}

/* Desktops */
@media (min-width: 1024px) {
  /* Add overrides here */
}

/* Large desktops / wide screens */
@media (min-width: 1440px) {
  /* Add overrides here */
}