body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-image: url('../rickblue.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    color: white;
    overflow-x: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.button-container {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.button-wrapper {
    transform: skew(-10deg);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 300px;
}

.button-text {
    font-family: 'Verdana', sans-serif;
    font-size: 22px;
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    transition: color 0.3s, text-shadow 0.3s, transform 0.3s ease;
    margin-right: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
    width: 250px;
}

.rick-button {
    background-image: url('../rickface.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    width: 150px;
    height: 150px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.button-wrapper:hover .rick-button {
    transform: scale(1.1) rotate(2deg);
}

.button-wrapper:hover .button-text {
    transform: translateX(-15px);
    color: #ffcc00;
    text-shadow: 0 0 15px rgba(255, 204, 0, 1);
}

.shrek-container {
    position: absolute;
    right: 2%;
    bottom: 2%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transform: skew(5deg);
}

.shrek-text {
    font-family: 'Verdana', sans-serif;
    font-size: 12px;
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    transition: color 0.3s, text-shadow 0.3s, transform 0.3s ease;
    margin-right: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
}

.shrek-button {
    background-image: url('../shrekthethird.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    width: 75px;  /* Smaller size */
    height: 75px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.shrek-container:hover .shrek-button {
    transform: scale(1.1) rotate(2deg);
}

.shrek-container:hover .shrek-text {
    transform: translateX(-10px);
    color: #ffcc00;
    text-shadow: 0 0 15px rgba(255, 204, 0, 1);
}

.gif-container {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 200px;
    overflow: hidden;
}

.gif-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notification {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-family: Arial, sans-serif;
    font-size: 16px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    pointer-events: none;
    text-align: center;
}

.notification.show {
    opacity: 1;
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    body {
        justify-content: center;
        align-items: flex-start;
        background-size: cover;
    }

    .button-container {
        position: relative;
        right: 0;
        top: 30%;
        transform: translateY(-30%);
        width: 100%;
        align-items: center;
    }

    .button-wrapper {
        justify-content: center;
        width: 100%;
    }

    .button-text {
        font-size: 20px;
        text-align: center;
        margin-right: 0;
        width: auto;
    }

    .rick-button {
        width: 180px;
        height: 180px;
    }

    .shrek-container {
        right: 10px;
        bottom: 10px;
    }

    .shrek-button {
        width: 60px;
        height: 60px;
    }

    .gif-container {
        width: 80px;
        height: 160px;
    }
}