* {
  margin: 0;
  color: #E5DEC2;
}

body {
  background-color: #004B31;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


header {
  background-color: #E5DEC2;
  height: 90px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

#logo {
  margin: 10px;
  background-image: url(/assets/images/logo.png);
  height: 69px;
  width: 340px;
  background-size: contain;
  background-repeat: no-repeat;
  align-items: center;
}

main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.CS{
  font-size: 4rem;
  font-weight: 1000;
  text-align: center;
}

.Wb{
  font-size:1.5rem;
  font-weight: 800;
  text-align: center;
  margin-top: 15px;
 
}
.inline-container {
  display: flex;          
  align-items: center;    
}


.contact{
  margin: 15px;
  background-color:#C18011;
  border-radius: 10px;;
  border: none;
  font-size: 1.2rem;
  padding: 5px 12px;
  font-weight: 600;

}

.con{
  font-weight: 600;
}

.contact:hover{
    animation: Click 1s forwards;
}


#copy{
font-size: 1rem;
text-align: center;
margin-top: 1vh;
font-weight: bold;
}


footer {
  background-color: #C18011;
  height: 40px;
  flex-shrink: 0;
}

@keyframes Click {
  0%{
    border: 2px solid white;
  }
  100%{
    border: 2px solid white;
  }
}

