body {
    font-family: "helvetica", sans-serif;
    text-align: center;
}

.top_text {
    width: 100%;
    font-weight: bold;
    font-size: clamp(14px, 5vw, 200px);
}

.flex-container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: space-around; /* Even spacing */
    gap: 10px; /* Space between items */
    height: 100vh;
}

.buttons-container {
    display: flex;
    flex-direction: row; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: space-around; /* Even spacing */
    gap: 10px; /* Space between items */
}

.btn {
    font-size: 20px;
    margin: 0;
    /* left: 50%;
    transform: translateX(-50%); */
    line-height: 1.5;
    outline: none;
    border: none;
    padding: 10px 10px;
    background-color: purple;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}


.red_background{
    background-color: #d83d3d;
}

.shark-gif {
    max-width: 100%; /* Ensures the GIF is responsive and doesn't overflow */
    max-height: 70vh; /* Adjust based on the total height of the text and buttons */
}

.bottom-element {
    margin-top: auto; /* This pushes the element to the bottom */
    margin-bottom: 50px;
}