body {
    font-family: 'Arial', sans-serif;
    background-image: url(https://getwallpapers.com/wallpaper/full/0/3/1/90073.jpg);
    background-size: cover;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    transition: all 0.5s ease-in-out;
}


.index {
    text-align: center;
    padding: 50px;
}

h1 {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    letter-spacing: 2px;
    word-spacing: 2px;
    font-weight: 400;
    text-decoration: none;
    font-style: italic;
    font-variant: normal;
    text-transform: capitalize;
    font-size: 40px;
    color: black;
    margin-bottom: 10px;
    transition: all 0.5s ease-in-out;
}

h2 {
    color: #555;
    margin-bottom: 30px;
    font-family: "Lucida Console", Monaco, monospace;
    font-size: 25px;
    letter-spacing: 2px;
    word-spacing: 2px;
    color: black;
    font-weight: normal;
    text-decoration: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    transition: all 0.5s ease-in-out;
}


.index-pictures {
    display: flex;
    justify-content: center;
}

.picture-margins {
    margin: 8%;
    transition: transform 0.3s ease-in-out;
}
.picture-margins:hover {
    transform: scale(1.1);
}

.picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #000000;
    object-fit: cover;
    box-shadow: 0 0 10px 10px rgb(0, 0, 0);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.picture:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px 20px rgba(137, 137, 137, 0.6);
}



.index-name{
    font-family: Georgia, serif;

    letter-spacing: 2px;
    word-spacing: 2px;
    color: #f8f8f8;
    font-weight: normal;
    text-decoration: none;
    font-style: italic;
    font-variant: small-caps;
    text-transform: lowercase;
    text-shadow: 2px 2px 10px rgb(255, 255, 255);

}
.index-name:hover{
    color: gold;
    text-shadow: 0px 0px 15px rgb(255, 232, 104);
}
.index button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #000000;
  color: #000000;
  background-color: white;
  border-radius: 50px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}


.index button:hover {
  background-color: #000000;
  color: white;
  border-color: #ffffff;
}
