@keyframes bounce{
    0% { transform: scale(1, 1); }
    55% { transform: scale(0.82, 0.82); }
    100% { transform: scale(1, 1); }
}

@keyframes bgScroll {
  0% {
    background-position : 0px 0px
  }
  100% {
    background-position : -170px -204.55px
  }
}

#vressbounce {
    background-image: url("crinklebluebg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    
    min-width: 400px;
    max-width: 500px;
    aspect-ratio: 1/1;
    margin: 0 auto;
}

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

.pink {
    color: lightpink;
}

html {
    background-color: black;
}

body {
    color: white;
    font-family: "Concert One", sans-serif;
}

a {
    text-decoration: none;
    color: white;
    border: dotted;
    width: fit-content;
}

a:hover {
    border-radius: 100%;
}

.header {
    display: flex;
    font-family: "Comic Sans MS", sans-serif;
    font-size: 400%;
    min-height: 56px;
}

.header img {
    height: 100px;
}

.thename {
    margin-left: 3%;
}
.container {
    display: flex;
}

.smallest-column {
    width: 10%;
}

.smaller-column {
    width: 20%; 
}
.small-column {
    width: 33%;
}

.half-column {
    width: 50%;
}

.large-column {
    width: 66%;
}

.larger-column {
    width: 80%;
}

.largest-column {
    width: 90%;
}

#bgimg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url("slightcarpet.png");
    background-repeat: repeat;
    background-size: 170px auto;

    animation: bgScroll 8s linear infinite;

    z-index: -1;
}

#backbtn:hover {
    cursor: pointer;
    src: url("backbuttonhover.png");
}

#vbimg {
    height: 20em;
}

#vressbounce img:hover {
    cursor: pointer;
}

.start-bouncing {
    animation: bounce 0.35s ease-in 1;
}

@media only screen and (max-width: 970px) {
    html,
    body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px;
  }

  .container,
  .page,
  .main {
    display: flex;
    flex-flow: column wrap;
    width: 100%;
    float: none;
    height: auto;
    margin: 0;
    min-width: 200px;
    border: none;
  }
  
  .header {
    font-size: 200%;
  }
  .header img {
    height: 100%;
  }
  .small-column {
    width: 100%;
  }
}