@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  background-image: url(Europe.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

img {
  width: 500px;
  height: 380px;
  object-fit: cover;
}

.carousel {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  height: 530px;
  width: 500px;
  overflow: hidden;
}

.image-container {
  display: flex;
  transform: translateX(0);
  transition: transform 0.5s ease-in-out;
}

.buttons-container {
  display: flex;
  justify-content: space-between;
}
#link {
    color: yellow;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    margin-left: 5px;
    text-shadow: 1px 1px 2px black;

}
p { color:#fff;
    margin-left: 5px;
    text-shadow: 1px 1px 2px black;
}
.link {
     width: 500px;
     background-color: #3E8E7E;
     border-radius: 5px 5px 0 0;
}
.btn {
  background-color: #3E8E7E;
  color: #fff;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  width: 50%;
  border-radius: 0 0 5px 5px;
}

.btn:hover {
  opacity: 0.9;
}

.btn:focus {
  outline: none;
}
