body {
    margin-top: 0px;
    background-color: #000000;
    height: 100%;
    font-family: 'Verdana', Tahoma, Geneva, Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    color: #F5F5F4;
    text-transform: uppercase;
    margin-bottom: 0%;
}

h2 {
    color: #F5F5F4;
    text-transform: uppercase;

}

h3 {
    margin-top: 0%;
    color: #EC407A;
}

p {
    color: #F5F5F4;
}

a {
    color: #D6D3D1;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: #E91E63;
}

pinkbox {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: row;
    align-items: left;
    float: center;
    text-align: center;
    background-color: #EC407A;
    padding: 0%;
    margin-top: 2%;
    color: black;
}

stickybox {
    top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    text-align: center;
    width: 100%;
    height: 130px;
    position: sticky;
    padding: 2%;
    padding-bottom: .7%;
    padding-top: .5%;
    background-color: black;
}

container {
    height: auto;
    width: auto;
    align-items: center;
    display: grid;
    grid-template-columns: 100%;
}

dogbox {
    height: 600px;
    width: 600px;
    background-image: url('placeholder.webp');
    background-size: 100%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

textbox {
    height: auto;
    width: auto;
    text-align: left;
    padding: 2%;
}

page {
    float: center;
    width: 60%;
    height: auto;
    background-color: black;
    padding: 5%;
}

pinkboxlong {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    background-color: #EC407A;
    padding-left: 10%;
    margin-top: 2%;
    color: black;
}

.tab {
  overflow: hidden;
  border: 1px solid black;
  background-color: #070707;
}


.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  color:#EC407A;
  width: 25%;
  font-size: 1.5em;
}

.tab button:hover {
  background-color: #0e0e0e;
}

.tab button.active {
  background-color: #EC407A;
  color: black;
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid black;
  border-top: none;
  text-indent: 1em;
}

.download {
    background-color: #EC407A;
    color: black;
    font-size: 2rem;
    border: 1px solid black;
    border-radius: 15px;
}

.download:hover {
    background-color:#ff8bb2;
    border: 2px solid #ccc;
}

.download:visited {
    background-color:#E91E63;
    text-decoration: underline;
}