* {
    box-sizing: border-box;
    margin: 0;
}

html {
    background-color: rgb(70, 137, 212);
}

header {
    display: flex;
    justify-content: center;
}

h1 {
    color: rgb(250, 253, 253);
    padding: 30px;
    font-size: 60px;
}

.text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

h2 {
    color: aliceblue;
    padding: 20px;
}

.text {
    display: flex;
    justify-content: center;align-items: center;
}

.dog {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  padding-bottom: 20px;
}

.dogImg {
    max-width: 100%;
    width: 600px;
    height: auto;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.3);
}

.getDog {
    width: 100px;
    height: 50px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}