a {
    text-decoration: none;
}

.button {
    padding: 10px 20px;
    border: 1px solid white;
    border-radius: 5px;
    margin: 8px;
    color: white;
    transition: 0.3s;
}

.button.learn {
   border: none;
   background: rgba(101,67,33, 0.5);
   font-size: 0.8em;
   margin: 10px;
   transition: 0.3s;
}

.button a {
    text-decoration: none;
    color: white;
}

.button:hover {
    border: none;
    color: black;
    background: orange;
    box-shadow: 0 0 10px orange,
                0 0 20px black,
                0 0 40px orange;
}

.button:hover a {
    color: black;
}

.button.learn:hover {
    box-shadow: 0 0 10px orange,
                0 0 20px black,
                0 0 40px orange;
}

.arrows img {
    width: 20px;
    height: auto;
}

#back {
    bottom: 5px;
    left: 5px;
    position: absolute;
}

#forward {
    bottom: 5px;
    right: 5px;
    position: absolute;
}

@media(min-width: 768px) {

    .button {
        padding: 15px 30px;
        font-size: 1em;
    }

    .arrows img {
        width: 30px;
    }

  
}


@media(min-width: 1024px) {
    .button {
        padding: 18px 26px;
        font-size: 1em;
    }

  
}

@media(min-width: 1200px) {

    .button {

    }

    .button.learn {
        
    }

    .arrows {
        width: 50px;
    }

    #back {
        bottom: 10px;
        left: 10px;
    }

    #forward {
        bottom: 10px;
        right: 10px;
    }
}