html, body{
    height: 99%;
    width: 99%;
    margin: auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#infoButton {
    cursor: pointer;
    font-size: xxx-large;
    margin: 0px;
    color: black;
}

#infoButton a {
    text-decoration: none;
    color: black;
}

#container {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#container strong {
  font-size: 20px;
}

#container p {
  font-size: 16px;
  color: #8c8c8c;
  margin: 0;
}

#container a {
  text-decoration: none;
}

ion-content ion-toolbar {
  --background: translucent;
  text-align: center;
}

.wordDivs {
	display: flex;
    flex: 4;
    height: 85%;
    min-height: 60vh;
	align-items: center;
	justify-content: center;
	margin: 5px;
	padding: 10px;
    cursor: pointer;
    color: white;
}

#adjDiv .front, #adjDiv .back {
    background-color: rgba(0, 200, 0, 0.5);
    border-radius: 10px;
    display: flex;
	align-items: center;
	justify-content: center;
}

#nounDiv .front, #nounDiv .back {
    background-color: rgba(255, 0, 0, 0.5);
    border-radius: 10px;
    display: flex;
	align-items: center;
	justify-content: center;
}

.back{
    position: absolute!important;
}

#nounText, #adjText {
	font-size: 30px;
	font-weight: bold;
}

#nounDef, #adjDef {
    font-size: 14px;
}

#newWordsButton {
    background-color: #2a6af3d3;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
    #homeHeader {
        max-width: 100%;
    }

    #homeHeader img {
        max-width: 50%;
    }

    #container {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 90%;
        overflow: hidden;
    }
    .wordDivs{
        width: 85%;
        min-height: 25vh;
    }
  }