* {
    margin: 0;
    padding: 0;
}

.container {
    text-align: center;
}

.sec {
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.container h2{
    font-size: 30px;
    color: brown;
    padding: 20px;
}

.col-3 button{
    background-image: linear-gradient(#42A1EC, #0070C9);
    border: 1px solid #0077CC;
    border-radius: 4px;
    color: #FFFFFF;
    cursor: pointer;
    margin-bottom: 1rem;
    height: 4rem;
    width: 7rem;
    font-size: 1.2rem;
}
.secenekler .btn {
    border: 1px solid rgb(0, 160, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    margin: 10px;
    height: 200px;
    border-radius: 50%;
    background-color: rgb(0, 170, 255);
    transition: transform 0.2s ease-in;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.secenekler img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.secenekler .btn:hover {
    border: 1px solid rgb(250, 166, 10);
    color: aliceblue;
    transform: scale(1.1);
    background-color: orange;
    margin: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}


#computer-secenekler {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: blue;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto;
    transition: transform 0.2s ease-in;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

#computer-secenekler:hover {
    transform: scale(1.1) translateY(-10px); 
    background-color: orange;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
@keyframes bounceAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.secenekler .btn:hover {
    animation: buttonHoverAnimation 0.7s infinite linear;
  }
  
  @keyframes buttonHoverAnimation {
    0% {
      transform: rotate(1deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  