*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
    background-color: gray;
}

/*anasayfanın temel düzeni*/

#header{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 1200px;
    height: 70px;
    box-sizing: content-box;
    background-color: rgb(42, 195, 255);
    border-left: 1px solid black;
    border-right: 1px solid black;
}

#nav{
    text-align: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 1200px;
    height: 30px;
    box-sizing: content-box;
    background-color: orange;
    border-left: 1px solid black;
    border-right: 1px solid black;
}

#content{
    background-color: white;
    z-index: -5;
    margin-left: auto;
    margin-right: auto;
    width: 1200px;
    height: 1200px;
    box-sizing: content-box;
    border-left: 1px solid black;
    border-right: 1px solid black;
}

#footer{
    margin-left: auto;
    margin-right: auto;
    width: 1200px;
    height: 30px;
    box-sizing: content-box;
    background-color: orange;
    border-left: 1px solid black;
    border-right: 1px solid black;
}

/*header kısmı*/

/*Logo*/

#logo{

   /* position: absolute; */
    text-decoration: none;
    font-size: 50px;
    margin-top: 3px;
   /* margin-left: 25px; */
    color: black;
    font-weight: bold;
   /* letter-spacing: 1px; */
}

/*nav kısmı*/

/*nav linkleri*/

#nav a{
    text-align: center;
    margin: 10px;
    text-decoration: none;
    font-size: 20px;
    color: black;
}

#homepage{
    position: relative;
    top: 4px;
}

#contact{
    position: relative;
    top: 4px;
}

#pixels{
    position: relative;
    top: 4px;
}

#hakkımda{
    position: relative;
    top: 4px;
}

/*Content Kısmı*/

/*Vip Kısmı*/

.vipalani {
  top: 550px;
  left: 500px;
  --border-width: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 120px;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: white;
  z-index: 1;
  border-radius: var(--border-width);
}

.vipalani::after {
  position: absolute;
  content: "";
  top: calc(-1 * var(--border-width));
  left: calc(-1 * var(--border-width));
  z-index: -1;
  width: calc(100% + var(--border-width) * 2);
  height: calc(100% + var(--border-width) * 2);
  background: linear-gradient(60deg, #5f86f2, #a65ff2, #f25fd0, #f25f61, #f2cb5f, #abf25f, #5ff281, #5ff2f0);
  background-size: 300% 300%;
  background-position: 0 50%;
  border-radius: calc(2 * var(--border-width));
  animation: moveGradient 2.5s alternate infinite;
}

@keyframes moveGradient {
  50% {
    background-position: 100% 50%;
  }
}

.vipalani img{
    margin-top: 10px;
    width: 200px;
    height: 120px;
    border-radius: var(--border-width);
}

  
/*Footer Kısmı*/

#footer p{
    color: black;
    font-weight: bold;
    padding-top: 5px;
    text-align: center;
}

















































































































