*, html, body{
	margin: 0;
	padding: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
}

a{
    text-decoration: none;
}

body{
    background-color: rgb(50, 50, 50);
}

code{
    background-color: #3C4041;
    color: #C35252;
    padding: 0 5px;
    border-radius: 5px;
}



.link{
    font-weight: bold;
    text-decoration: none;
    position: relative;
    border-bottom: 1px solid #ffb825;
}

.link:after{
    content: '';
    display: block;
    border-bottom: 2px solid #ffb825;
    width: 0;
    position: absolute;
    left: 0;
    -webkit-transition: 0.8s ease;
    transition: 0.8s ease;
}

.link:hover:after{
    width: 100%;
}


button{
    transition: border 0.2s ease-in;
    outline: none;
}

button:hover{
    border: 3px solid #ffb825;
}















@media only screen and (max-width: 900px){
    button:hover{
        border: 2px solid #ffb825;
    }
}