* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

body {
    background: linear-gradient(45deg, #190361 0%, #BB00FF 100%);

    display: grid;
    place-items: center;
    height: 100vh;


    text-align: center;

    font-family: 'Montserrat';
}

/* screen 1 */
.main {
    background: white;

    padding: 42px 48px;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.8);
    border-radius: 5px;

}

h1 {
    padding-bottom: 14px;

    font-size: 24px;
    line-height: 29px;
}

p {
    font-size: 15px;
    line-height: 20px;

    padding-bottom: 34px;

}

.hide {
    display: none;
}

#fortune-cookie {
    transition: transform 1s;

}

#fortune-cookie:hover {
    transform: translateX(8px) scale(1.1);
}

/* screen 2 */

.goodluck {
    background: white;

    padding: 15px 64px;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.8);
    border-radius: 5px;

    display: grid;
    place-items: center;
}

h2 {
    padding-bottom: 25px;
    font-size: 24px;
    line-height: 29px;
}

fieldset {
    padding: 10px;

    background: #E4EDF1;
    box-shadow: 2px 2px 2px rgba(85, 85, 85, 0.5);

    border: none;
}

button {
    padding: 16px;

    font-size: 15px;
    line-height: 20px;

    font-family: 'Montserrat';

    background: #FF9500;
    color: white;

    border-radius: 4px;
    border: none;

    transition: transform 1s;
}

button:hover {

    background: #a76201;
    cursor: pointer;

    transform:scale(1.1)
}