* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    width: 100%;
}

.prank {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.prank-text-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.prank-text {
    font-size: 60px;
    text-align: center;
}

.prank-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
}

.prank-btn {
    padding: 15px 30px;
    font-size: 25px;
    border: none;
    border-bottom: 3px solid #7a7a7a;
    border-right: 2px solid #7a7a7a;
    cursor: pointer;
}

.prank-btn:hover {
    transform: scale(0.95);
}

.yes-btn-text {
    text-decoration: none;
    color: black;
}

.yes-text-container {
    display: none;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

.yes-text {
    font-size: 150px;
    text-align: center;
}