* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    width: 100%;
    height: 100vh;
    background-color: antiquewhite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: system-ui,  sans-serif;
}

.fireworks {
    height: 100vh;
}

.content {
    max-width: 750px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 50px 30px;
    position: absolute;
    top: 10%;
    left: 30%;
    z-index: 10;
    opacity: 0.9;
}

.content__title {
    font-size: 46px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 20px;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
}

.wrapper__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.wrapper__content > span {
    font-size: 25px;
    color: blueviolet;
    text-transform: uppercase;
    font-weight: bold;
}

.wrapper__content > img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.btn {
    width: 50%;
    padding: 7px 60px;
    background-color: blueviolet;
    color: #fff;
    font-size: 25px;
    text-transform: uppercase;
    display: block;
    margin: 30px auto 20px;
    border-radius: 5px;
    border: none;
}

.result {
    font-size: 25px;
    text-align: center;
}

