@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300&display=swap');

body {
  background-color: rgb(102, 96, 159);
  margin: 0;
  padding: 0;
  font-family: 'Work Sans', sans-serif;
  font-size: 40px;
  color:white;
}

header{
  text-align: center;    
}

header > span {
  padding-top:10px;
  padding-left:20px;
  padding-right:20px;  
}

.container {
  top:50%;
  left:50%;
  position:absolute;
  transform:translate(-50%,-50%);
  text-align: center;
  width: 100%;
}

.phrase {
  margin:50px;
}

.next_phrase {
  position: relative;
}

.next_phrase > img {
  width: 40px;
  color: white;
  padding:10px;  
  box-sizing: border-box;
}

.next_phrase > img:hover {
  width: 40px;
  padding:10px;  
  border: 2px solid white;
  border-radius: 5px;
}

.previous_phrase {
  position: relative;
}

.previous_phrase > img {
  width: 40px;
  color: white;
  padding:10px;  
  box-sizing: border-box;
}

.previous_phrase > img:hover {
  width: 40px;
  padding:10px;  
  border: 2px solid white;
  border-radius: 5px;
}
.menu {  
  text-align: center;
  position: absolute;
  top:40px;
  right:60px;
  padding: 10px;
}

.again {
  width: 40px;
  font-size: 12px;
  padding:10px;
  box-sizing: border-box;
}

.again:hover {
  width: 40px;
  border: 2px solid white;
  border-radius: 5px;
}

.phraseSelected {
  font-weight: bold;
  color: yellow;
}

footer {
  position: absolute;
  bottom:5px;
  left:4px;
  font-size: 6px;
}
