<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&amp;family=Lato:ital,wght@0,100;0,300;1,300&amp;family=Montserrat:ital,wght@0,400;0,500;1,400&amp;family=Nunito:ital,wght@0,700;1,300;1,400&amp;family=Open+Sans:ital,wght@0,400;0,500;1,300&amp;family=Readex+Pro:wght@300&amp;family=Roboto+Mono:wght@200&amp;display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Kdam Thmor Pro", sans-serif;
}
body {
  background-image: linear-gradient(-90deg, rgb(236, 227, 209), azure);
}
.navbar {
  padding-top: 20px;
  height: 10vh;
  width: 100%;
  background-color: #192722;
  font-size: 30px;
  color: white;
  text-align: center;
  font-size: Sans-serif;
}

.container {
  height: 80vh;
  width: 100%;
  /* background-color: blue; */
}

form {
  display: inline-flex;
  justify-content: space-around;
  width: 100%;
  padding: 50px 0;
  background-image: linear-gradient(-90deg, rgb(236, 227, 209), azure);
}

#dog-breeds {
  padding: 10px;
  font-size: 1.4rem;
  width: 30%;
  min-width: 200px;
}

#dog-breeds option {
  padding: 10px;
  font-size: 1rem;
}

form label {
  padding: 5px 0;
}

form input {
  padding: 5px;
}

button {
  width: 150px;
  height: 40px;
  font-family: monospace;
  font-size: 1.2rem;
  cursor: pointer;
}

button:hover {
  box-shadow: 0px 0px 30px 2px grey;
}

#flex {
  display: flex;
  margin-top: 50px;
  height: 400px;
}

#breed-image {
  width: 60%;
  min-width: 300px;
  overflow: hidden;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

#breed-image img {
  border: 1px dotted black;
  max-height: 400px;
  max-width: 100%;
  min-height: 300px;
}

#next {
  width: 40%;
}

#next a {
  font-size: 1.5rem;
  color: skyblue;
  text-decoration: none;
  border: 1px solid lightgrey;
  padding: 10px 20px;
}

#next a:hover {
  box-shadow: 0px 0px 10px lightblue;
  text-shadow: 0px 0px 5px lightblue;
}

.btn {
  height: 40px;
  width: 150px;
  background-color: #63bbf2;
  border-radius: 10px;
  color: white;
}

#next a {
  height: 40px;
  width: 150px;
  background-color: #63bbf2;
  border-radius: 10px;
  color: white;
  text-align: center;
  padding-bottom: 40px;
  border: 2px solid black;
}



.warning {
  text-align: center;
  padding-top: 10px;
  font-size: 18px;
  background-image: linear-gradient(-90deg, rgb(236, 227, 209), azure);
}

a {
  text-decoration: none;
}
@media only screen and (max-width: 600px) {
     body{
    width: 100%;
  }
    .navbar {
      font-size: 18px;
      padding-top: 10px;
      
    }
  
    #breed-image img {
      margin-left: 100px;
    }
    #flex {
      display: flex;
      flex-direction: column;
      justify-content: space-around;
    }
  }
</pre></body></html>