/* 13:50:28 */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Tourney:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500&display=swap');

/* font-family: 'Dancing Script', cursive;
font-family: 'Tourney', cursive; */

* {
    letter-spacing: 2px;
    line-height: 110%;
    margin: 0px;
    border: 0px;
    font-family: 'Dancing Script', cursive;
}

body {
    background-image: url('Funny-hd-wallpaper-1080p.jpg');
    background-size: 100vw;
    height: 100vh;
    width: 100vw;
}

.container {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50vh;
    width: 50vw;
    background-color: rgba(255, 166, 0, 0.9);
    border-radius: 30px;
    box-shadow: 0px 0px 20px red;
    transition: 0.4s;
    border: 2px solid rgba(255, 0, 0, 0.93);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.container:hover {
    box-shadow: 0px 0px 50px red;
    height: 52vh;
    width: 52vw;
}

.container h3 {
    font-size: 40px;
    flex-basis: auto;
    font-weight: 800;
	

    /* text-decoration: underline; */
}

.container div {
    margin: 30px;
    margin-left: 50px;
    margin-top: -5px;
    font-size: 35px;
    /* border: 1px solid black; */
    flex-basis: auto;
    /* font-weight: 700; */
}

.btn {
    background-color: black;
    border: 2px double white;
    font-family: 'Tourney', cursive;
    flex-basis: auto;
    font-size: 30px;
    color: white;
    border-radius: 10px;
    padding: 10px;
    opacity: 0.6;
    transition: 0.4s;
}

.btn:hover {
    /* margin-bottom: 20px; */
    cursor: pointer;
    opacity: 1;
    transform: scale(1.1, 1.1);
}