body {
    background-image: url("../img/sea.png");
    /* background-position: center; */
    /* position: fixed; */
    background-position: fixed;
    background-repeat: no-repeat;
    /* background-size: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    vertical-align: middle;
    align-items: center;
    width: 95%;
    height: 95%;
}

#content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: cornsilk;
    width: 50%;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    vertical-align: middle;
    align-items: center;
}

p {
    padding-left: 5%;
    padding-right: 5%;
    margin-bottom: 2%;
    margin-top: 1%;
    font-size: 1.2vw;
}

#button {
    background-color: rgb(82, 255, 72);
    width: 15%;
    height: 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    vertical-align: middle;
    align-items: center;
    border-radius: 5px;
    border: 1px solid black;
    font-size: 1vw;
}

#button:hover {
    background-color: rgb(72, 252, 255);
}

header {
    margin-top: 5%;
    margin-bottom: 5%;
    font-size: 2vw;
    font-weight: bold;
    color: rgb(255, 132, 43);
    text-shadow: 2px 2px 1px #000000;
}