*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 64.5%;
}

h1 {
    text-align: center;
    color: white;
}

body{
    background-color: rgba(67, 17, 67, 0.824);
}

.mode {
    justify-content: center;
    display: flex;
    padding-top: 3rem;
    gap: 1rem;
}

.mode button {
    width: 15rem;
    height: 5rem;
    border-radius: 2rem;
    border-style: none;
    padding: 0.8rem;
    background-color: rgba(67, 17, 67, 0.824);
    font-size: 1.7rem;
    color: white;
    font-weight: 600;

    transition: 0.5s ease-in-out;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.container {
    background-color: rgba(255, 255, 255, 0.984);
    padding: 3rem;
    width: 35rem;
    height: 50rem;
    border-radius: 2rem;
}

h2 {
    font-size: 2.7rem;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 650;
    text-align: center;
    padding-top: 0.5rem;
}

.input {
    display: flex;
    justify-content: center;
    padding-top: 2.5rem;
}

input {
    text-align: center;
    width: 30rem;
    height: 4.5rem;
    border-radius: 2rem;
    border-style: solid;
    background-color: rgba(67, 17, 67, 0.824);
    padding: 0.8rem;
    background-color: rgba(225, 182, 225, 0.657);
}

::placeholder {
    font-size: 1.6rem;
    text-align: center;
}

.generate-btn {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}

.generate-btn button {
    width: 30rem;
    height: 4.5rem;
    border-radius: 2rem;
    border-style: none;
    padding: 0.8rem;
    background-color: rgba(67, 17, 67, 0.824);
    font-size: 1.7rem;
    color: white;
    font-weight: 600;

    animation: glide 2s infinite linear;

    transition: 0.5s ease-in-out;
    
}

@keyframes glide {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(1rem);
    }

    100% {
        transform: translateY(0);
    }
}

button:hover {
    background-color: rgba(108, 31, 108, 0.704);
    cursor: pointer;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
}

.icon #icon {
    padding-top: 2rem;
    font-size: 2rem;
    border: 1px;
    border-radius: 95%;
    padding: 1.2rem;
    background-color: rgba(92, 14, 92, 0.657);
}

.qoutes {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    box-shadow: 1px 1px 1px 2px  rgb(184, 183, 183);
    padding: 1.2rem;
    width: 29rem;
    height: 24rem;
    border-radius: 1rem;
    background-color: rgba(225, 182, 225, 0.657);
}

.text {
    font-size: 2rem;
    font-weight: 600;
    padding-bottom: 3rem;
    padding-top: 2.5rem;
    font-family: 'Times New Roman', Times, serif;
}

.text i {
    font-size: 1.8rem;
    padding-right: 0.5rem;
    /* color: rgb(244, 244, 244); */
}

.day {
    justify-content: center;
}

.day p {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.7rem;
    padding-top: 2rem;
}

@media(max-width: 62.5rem) {
    html {
        font-size: 50%;
    }
}

@media(max-width: 31.25rem) {
    html {
        font-size: 37.5%;
    }

    h1 {
        padding-top: 8rem;
        font-size: 3rem;
    }

    .mode{
        padding-top: 6rem;
    }

    .wrapper {
        height: 70vh;
    }
}