body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end; 
    font-family: Arial, sans-serif;
    background-image: url('../Deathtrip/bilder/Instagram-Youth-Safety_Header.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px; 
}


.speech-phone-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    bottom: 20px;
    left: 20px;
}


.speech-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px; 
}

.bubble-wrapper {
    position: relative;
    display: inline-block;
}

.speech-bubble {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    max-width: 250px;
    position: relative;
    text-align: left;
}

.speech-tail {
    position: absolute;
    bottom: -15px;
    left: 15px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid white;
    cursor: pointer;
}

.speech-tail:hover {
    border-top-color: lightgray;
}


.phone-container {
    position: relative;
    width: 200px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-container img {
    width: 100%;
    height: auto;
}


.phone-icon {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #25D366;
    color: white;
    width: 40px;
    height: 40px;
    display: none; 
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.phone-icon:hover {
    background-color: #1da851;
}

.instruction-text {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: rgba(0, 0, 0, 0.5); /* Slight black background to improve visibility */
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}