@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

html, body {
   height: 100%; 
}

body {
    background-color: #000;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#container {
    position: relative;
    width: 640px;
    height: 400px;
}

#viewport {
    width: 640px;
    height: 256px;
    position: relative;
    overflow-x: auto;
    background-image: url("../images/water0.png");
    margin-top: 125px;
}

#ports {
    margin-top: 96px;
    display: flex;
    justify-content: space-around;
}

#ports > .port {
    width: 64px;
    height: 32px;
    background-image: url("../images/port.png");
}

#ship {
    width: 128px;
    height: 64px;
    background-image: url("../images/ship.png");
    position: absolute;
}

#sailbutton {
    border: 0;
    background-color: #FB3640;
    border-bottom: 4px solid #d8040f;
    color: #FFFFFF;
    font-family: inherit;
    padding: 10px 20px;
    position: sticky;
    width: 100%;
    font-family: "Press Start 2P", cursive; 
    cursor: pointer; 
}

#sailbutton:focus {
    background-color: #d8040f;
    border-bottom-width: 0;
    padding-top: 14px;
}

#message {
    padding: 16px;
    font-family: "Press Start 2P", cursive;
    position: absolute;
    bottom: 20px;
    width: 95%;
    border-top: 3px solid #000;
    background-color: #FFFFFF;  
}

#display {
    position: relative;
    color: #FFFFFF;
    font-family: "Press Start 2P", cursive;
    width: 640px;
}

#current-port {
    position: absolute;
    top: 22px;
    left: 5px;
}

#next-port {
    position: absolute;
    top: 52px;
    left: 5px;
}

#port-form {
    width: 200px;
    height: 100px;
    background-color: #FFFFFF;
    font-family: "Press Start 2P", cursive;
    position: absolute;
    top: 465px;
    padding-top: 15px;
    padding-bottom: 10px;
    padding-left: 10px;
    border: 4px solid #000;
    border-style: double;
}

#port-name {
    width: 180px;
    height: 25px;
    margin-top: 10px;
}

#addbutton {
    color: #FFFFFF;
    background-color: #d8040f;
    font-family: "Press Start 2P", cursive;
    margin-top: 5px;
    cursor: pointer;
}










