* {
    /* margin: 0; */
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #171401;
}

.background-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.App {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: normal;
    max-width: 60vh;
    margin: 0 auto;
    flex-direction: column;
    margin-top: 15vh;
    min-height: 520px;
    background: #00FFA0;
    padding: 1rem;
    border-radius: 1rem;
    border: .5vmin solid #05060f;
    box-shadow: .4rem .4rem #05060f;
}

hr {
    height: 3px;
    background-color: #fa024c;
}

.App h1 {
    color: #1f10f2;
    font-size: 1.4rem;
    line-height: 1.25;
    font-weight: 700;
    font-weight: 600;
    font-family: 'Monoton', cursive;
}

.text {
    height: 100%;
}

.randomWord {
    color: #05060f;
    font-size: 1.8rem;
    line-height: 1.25;
    font-weight: 700;
}

.word-definition {
    height: 230px;
    width: 100%;
    color: #05060f;
    font-size: 1.2rem;
    line-height: 1.25;
    font-weight: 700;
    overflow: scroll;
}

.word-definition::-webkit-scrollbar {
    display: none;
}

button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
    color: white;
    text-shadow: 2px 2px rgb(116, 116, 116);
    text-transform: uppercase;
    border: solid 2px black;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 17px;
    background-color: hsl(49deg 98% 60%);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all .5s ease;
}

button:active {
    transform: scale(.9);
    transition: all 100ms ease;
}

button svg {
    transition: all .5s ease;
    z-index: 2;
}

.play {
    transition: all .5s ease;
    transition-delay: 300ms;
}

button:hover svg {
    transform: scale(3) translate(50%);
}

.now {
    position: absolute;
    left: 0;
    transform: translateX(-100%);
    transition: all .5s ease;
    z-index: 2;
}

button:hover .now {
    transform: translateX(10px);
    transition-delay: 300ms;
}

button:hover .play {
    transform: translateX(200%);
    transition-delay: 300ms;
}

.submit {
    display: flex;
    justify-content: space-between;
}

.github-link {
    color: #05060f;
    font-size: 1.7rem;
}

footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    max-width: 570px;
    padding: 20px;
    z-index: 10;
    text-align: center;
}

.authorname {
    background: rgba(255, 255, 255, 0.605);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #061357;
    position: relative;
    display: flex;
    justify-content: center;
}

.author a{
    font-size: 10px;
    color: #011ef8;
    font-weight: bold;
}
a {
    text-decoration: none;
}
.author:hover{
    cursor: pointer;
    color: #3636f2;
}

@media screen and (max-width:900px) {
    .App h1 {
        font-size: 20px;
    }
    footer{
        width: 100%;
    }
}