body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to right, #444444, #111111);
}

.navbar {
    position: relative;
    background: linear-gradient(to right, #55fecd, #e5017e);
    height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbar-link {
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.navbar-link:hover {
    color: #333333;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 80px);
}

.content-button {
    background-color: transparent;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.content-image {
    box-shadow: 0 0 160px 10px rgba(0, 0, 0, 0.9);
    width: 200px;
    height: 200px;
    position: relative;
    border-radius: 100px;
    transition: box-shadow 2s, transform 1.5s;
}

.content-image.hovered {
    box-shadow: 0 0 80px 50px rgba(255, 255, 255, 0.2);
    transform: scale(2.5) rotate(360deg);
}

.content-image.hovered-reverse {
    box-shadow: 0 0 160px 10px rgba(0, 0, 0, 0.9);
    transform: scale(1) rotate(0deg);
    transition: transform 1.5s, box-shadow 2s;
}


.content-caption {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 800;
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: none;
}

@media only screen and (max-width: 768px) {
    .content-image {
        width: 150px;
        height: 150px;
        box-shadow: 0 0 160px 10px rgba(0, 0, 0, 0.9);
    }

    .content-image.clicked {
        transform: scale(2) rotate(360deg);
        transition: box-shadow 1.5s, transform 1s;
        box-shadow: 0 0 80px 50px rgba(255, 255, 255, 0.2);
    }
}
