*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
 }

body {
    background-image: url(img/herobrine.jpg);
    background-size: cover;
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    color: white;
    text-shadow: 1px 1px #000000;
    font-size: 2vw;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.flexstart {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.island {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    height: 50vh;
    margin-top: 10vh;
}

.inputs {
    display: flex;
    flex-direction: column;
    width: 50%;

}

input {
    text-align: center;
    min-width: 45%;
    color: white;
    background-color: #4697d17b;
    border: none;
    text-shadow: 1px 1px #000000;
    font-size: 2vw;
}

.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
}

.buttonContainer {
    margin-left: 50%;
    display: flex;
    align-items: center;
    width: 100%;
}

.button {
    background-color: #66325b;
    border: solid black 3px;
    width: 50%;
    padding: 2.5%;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: #fff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px #000000;
    margin: 10px;
    font-size: 2vw;
    text-shadow: 1px 1px #000000;
}

.button:active {
  box-shadow: 0 2px #000000;
  transform: translateY(4px);
  text-shadow: 1px 1px #000000;
}

.outputs {
    text-align: center;
    width: 100%;
}

a {
    color: white;
    text-decoration: none;
}

.imgs {
    display: flex;
    flex-direction: row;
}

.imgpic {
    width: 20vw;
}