@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: "chalkfont";
    src: url("./fonts/Sandbox\ Melodrama.ttf");
}

@font-face {
    font-family: "chalkfont2";
    src: url("./fonts/kimberly-geswein_kg-broken-vessels-sketch/KGBrokenVesselsSketch.ttf");
} 

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box

}


header {
    background-color: darkred;
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 80px
}

.logo{
    text-decoration: none;
    color: antiquewhite;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.8em;
}

.navigation a{
    text-decoration: none;
    color: antiquewhite;
    font-weight: 500;
    font-size: 1.1em;
    padding-left: 30px;
}

.navigation a:hover{
    color: aqua;
}


.social a { 
    color: #fff;
    font-size: 1.7em;
    padding-right: 58px;
    
}

.yt:hover{
    color: #FF0000;
}

.gm:hover{
    color: #FBBC05;
}

.wa:hover{
    color: #25D366;
}

.title {
    display: flex;
    justify-content: center;
    color: darkred;
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 30px;
}

.footer{
    background-color: black;
    color: #fff;
    padding: 0.1em;
    display: flex;
    justify-content: space-between;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
}

.footer-title{
    font-size: 1.3em;
    font-weight: 600;
}

.footer-title span{
    color: #f12727e6;
}

.my-nav{
    background-color: white;
    align-content: center;
    text-decoration: none;
    border: solid;
    border-radius: 10px;
    padding: 3px;
    margin: 3px 3px;
    margin-top: 7px;
}

.single-lesson{
    background-color: black;
    border-radius: 10px;
    padding: 0px 7px;
    color: #fdfbfc;
    text-decoration: none;
    margin: 2px;
    transition: ease 0.5s;
}
.single-lesson:hover{
    background-color: #25D366;
}

#current{
    background-color: white;
    color: black;
    padding: 0px 10px;
    border-right: solid;
    border-left: solid;
    border-radius: 5px;
}


.but-nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0px 100px;
}

#next-pre{
    font-size: 50px;
    text-decoration: none;
    color: black;
    margin: 0px 50px;
    transition: ease 1s;
}
#next-pre:hover{
    color: #25D366;
    scale: 1.1;
}

.page{
    background-color: #fdfbfc;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding-top: 50px;
    margin-bottom: 30px;
}
  
.word-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

#word-container-vocab{
    padding-bottom: 20px;
}
  
.word-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
.word-info img {
    height: 320px;
    border-radius: 20px;
}
  
.word-text {
    font-size: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    color: black;
    min-height: 140px;
    transition: ease;
    font-weight: bold;
    transition: ease 0.8s;
}

.word-text:hover{
    scale: 1.2;
    opacity: 0.7;
}

#person0{
    color: black;
}

#person1{
    color: darkgoldenrod;
}

#person2{
    color: darkgray;
}

#person3{
    color: darkturquoise;
}

#person4{
    color: darksalmon;
}

#person1b{
    color: darkgoldenrod;
    margin: 0px 40px;
}

#person2b{
    color: darkgray;
    margin: 0px 40px;
}

.persons{
    display: flex;
    flex-direction: row;
}
  
.word-meaning {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
}

#word-meaning-vocab p {
    text-decoration: none;
    margin: 2px;
    background-color: burlywood;
}

.word-meaning p {
    background-color: black;
    color: white;
    text-decoration: line-through;
    text-decoration-style: double;
    text-decoration-thickness: 10px;
    margin: 10px;
    border: solid black;
    border-radius: 30px;
    padding: 8px;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 22px;
    transition: ease 0.5s;
}
.word-meaning p:hover{
    background-color: #25D366;
    color: white;
    border: solid white;
    text-decoration: none;
    transition: ease 0.5s;
}

#flare{
    margin-right: 8px;
    transition: ea;
}
#flare:hover{
    color: #FBBC05;
    text-decoration: none;
}

.play-sound{
    display: none;
}

.word-meaning p:hover .play-sound{
    display: block;
}

.question{
    height: 320px;
    border-radius: 20px;
    font-size: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.extra {
    font-size: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    color: #25D366;
    min-height: 140px;
    transition: ease;
}

.word-meaning-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;

}

.word-meaning-options span {
    background-color: black;
    color: white;
    margin: 10px;
    border: solid black;
    border-radius: 30px;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 25px;
}


p1 {
    background-color: black;
    color: white;
    margin: 10px;
    border: solid black;
    border-radius: 30px;
    padding: 8px;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
}

.red {
    background-color: red;
}

.green {
    background-color: green;
}


.error {
    outline: 4px solid red;
    transition: outline 0.3s;
  }