* {
  padding: 0;
  margin: 0;
}

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* navbar start */

.topnav {
  display: flex;
  background-color: black;
  overflow: hidden;
  width: 100%;
  height: 70px;
  align-items: center;
}

.topnav a {
  float: left;
  display: flex;
  color: #f2f2f2;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  text-decoration: none;
  font-size: 17px;
  width: 20%;
  flex-direction: column;
}

.topnav a:hover {
  color: cyan;
}

.topnav a.active {
  color: cyan;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 380px) {
  .topnav a:not(:first-child) {
    display: none;
  }

  .topnav a.icon {
    float: right;
    display: block;
  }
}
.active {
  color: cyan;
}
@media screen and (max-width: 380px) {
  .topnav.responsive {
    position: relative;
  }

  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .topnav.responsive a {
    float: none;
    display: block;
    padding: 10 10px;
    text-align: center;
  }
}
/* navbar end */

/*villa-start*/
.villa {
  text-align: center;
  position: relative;
}

.villa img {
  width: 100%;
  height: auto;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
}

/*Villa-end*/

/*you can visit start*/
.ycv-image {
  width: 100%;
  height: auto;
}

.ycv {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  margin: 10px;
  padding: 12px;
}

.ycv-item {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
}

/*you can visit end*/

/*slider start*/
#slider {
  width: 100%;
  margin: 0px auto;
  max-width: 848px;
  height: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.4);
}

.slide {
  width: 100%;
  display: none;
  animation-name: fade;
  animation-duration: 1s;
}

img {
  width: 100%;
}

@keyframes fade {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
  }
}

.controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  padding: 15px 10px;
  border-radius: 5px;
}

.controls:hover {
  background: white;
  transition: 0.3s;
}

.controls:active {
  color: grey;
}

#left-arrow {
  left: 10px;
}

#right-arrow {
  right: 10px;
}

@media (max-width: 576px) {
  #slider {
    width: 100%;
  }

  .controls {
    font-size: 1em;
  }
}

/*slider end*/

/*Footer*/

#footerinfo{
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: space-evenly;
  color: white;
}
.footercontainer{
  display: flex;
  justify-content: space-evenly;
  gap: 130px;
}

.lastfoot ul{
  margin-top: 25px;
}

.lastfoot p{
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 5px;
  font-family: 'Times New Roman', Times, serif;
}

.handles{
  margin-top: 25px;
}

#footerinfo .bg1{
  position: absolute;
  right: 0;
  border-radius: 800px;
  height: 100px;
  width: 100px;
  margin: 190px 2px;
}

#footerinfo .bg2{
  position: absolute;
  right: 0;
  border-radius: 800px;
  height: 30px;
  width: 30px;
  margin: 145px 15px;
}
#footerinfo .bg3{
  position: absolute;
  right: 0;
  border: solid;
  border-color: white;
  border-radius: 800px;
  height: 15px;
  width: 15px;
  margin: 120px 50px;
}

#footerinfo .bg2left{
  position: absolute;
  left: 0;
  border-radius: 800px;
  height: 30px;
  width: 30px;
  margin: 10px 20px;
}
#footerinfo .bg3left{
  position: absolute;
  left: 0;
  border: solid;
  border-color: white;
  border-radius: 800px;
  height: 15px;
  width: 15px;
  margin: 50px 50px;
}

.copy{
  background-color: black;
  padding: 20px;
  text-align: center;
  color: white;
}

@media screen and (max-width: 767px){
  #footerinfo .bg1{
    display: none;
  }

  #footerinfo .bg2{
    display: none;
  }
  #footerinfo .bg3{
    display: none;
  }

  #footerinfo .bg2left{
    display: none;
  }

  #footerinfo .bg3left{
    display: none;
  }

  .lastfoot{
    width: 50%;
    margin-bottom: 30px;
  }
}


/*reviews start*/
.review {
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.rw {
  margin: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.rw-img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .review {
    flex-direction: column;
  }
}
/*reviews end*/

/* Changes */
.container{
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}


.content{
    text-align: center;
}

.content h1{
    font-size: 95px;
    color: #fff;
    margin-bottom: 50px;
}

.content a{
    font-size: 23px;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    padding: 15px 25px;
    border-radius: 50px;
    transition: 0.3s;
}

.content a:hover{
    background-color: #fff;
    color: #000;
}

.background-clip{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media (min-aspect-ratio:16/9) {
    .background-clip{
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio:16/9) {
    .background-clip{
        width: auto;
        height: 100%;
    }
}
