body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background-image: url(https://kiiview.neocities.org/background.png);
}

.generic-container {
    border-style: solid;
    border-radius: 5px;
    border-color: pink;
    
    height: 600px;
    width: 90%;

    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 10px;
}

.generic-icon-container {
    border-right-style: solid;
    border-right-color: pink;
    height: 100%;
    width: 500px;
}

.generic-icon-container-alt {
    border-left-style: solid;
    border-left-color: pink;
    height: 100%;
    width: 500px;
}

.generic-icon {
    width: 100%;
    padding-top: 60px;
    margin-bottom: 20px;
}


.generic-text-container {
    height: 100%;
    flex: 1;
}

.generic-text {
    color: rgb(233, 88, 112);
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: black;
    font-family: 'Patrick Hand';
    margin-top: -110px;
    margin-left: 10px;
}

.go-button {
  border: none;
  font-family: "Noto Sans JP";
  font-size: 80px;
  background-color: transparent;
  color: rgb(255, 150, 234);
  -webkit-text-stroke: 0px;
  position: relative;
  bottom: -150px;
  left: 40px;
  transition: 0.15s;
}

.go-button:hover {
  opacity: 0.5;
  cursor: pointer;
}

.go-button:active {
 opacity: 0.25; 
}