body {
  background-color: black;
  font-family: "Ms UI Gothic";
  font-size: 16px;
  color: #2b445e;
    
    
}

#container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 500px;
  width: 300px;
  padding: 0px;
  padding-top: 100px;
}

#container img{
  height: 100%;
  width: 100%;
  position: absolute;
  top: 100px;
  left: 750px;
  object-fit: cover;
}


#opendoor{
  display:none;
}

#container:hover #closeddoor{
  display:none;
}

#container:hover #opendoor{
  display:block;
}

::selection {
    color: #162336;
    background-color: #d3eef5;
}

mark { 
  background-color: #d3eef5;
  color: black;
}

a:hover {
  letter-spacing: 2px;
}



