body{
  background-color: #095763;
  margin: 0;
  padding: 0;
  font-family: 'Verdana Pro Condensed', sans-serif;
  height: 100dvh;
  display: flex;
  flex-direction: column;
}
.logo {
  height: 60px;
  width: auto;
}
.login {
  color: white;
  font-weight: bold;
  border: 1px solid black;
  border-radius: 5px;
  padding: 10px;
  background-color:#095763;
  transition: all 0.3s ease;
  animation: flashAnimation 10s infinite;
  animation-delay: 0s;
}
@keyframes flashAnimation {
  0% { background-color: #095763; }
  70% { background-color: #0a6c7b; }
  80% { background-color: #0f8ba0; }
  90% { background-color: #0a6c7b; }
  100% { background-color: #095763; }
}
.top {
  background-color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title {
  margin: 10px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.name {
  font-size: 2em;
  margin: 0;
  padding: 0;
}
.catchPhrase {
 font-size: 1em;
 padding: 0;
}
.footer {
  background-color: #095763;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 20px);
  padding: 10px;
  
}
a {
  text-decoration: none;
}
.footer a {
  color: white;
  text-decoration: none;
 
}
.imageDiv {
  width: 100%;
  flex: 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.frontImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
