body{
  background-image: url('../img/background/landingPage.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body h1{
  font-size: 3rem;
  margin-top: 6em !important;
  margin-bottom: 10px;
  color: #F9F6EE;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.polaroid {
    width: 200px;
    background: #F9F6EE;
    padding: 10px;
    text-align: center;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    position: relative;
    transition: transform 0.3s ease;
}
.polaroid:hover {
    transform: scale(1.05);
}
.photo-container {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.photo-container img {
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}
.linkedin-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.linkedin-logo img {
    width: 50px;
}
.photo-container:hover .linkedin-logo {
    opacity: 1;
}
.description {
    margin-top: 10px;
}
.description strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}