:root {
    --black:       #000;
    --grey:        #9D9D9D;
    --white:       #C9C9C9;

}

* {
    margin: 0;
    padding: 0;
    font-family: "Russo One", serif;
    box-sizing: border-box;
}

body{
    background: linear-gradient(180deg, #1D1D1D 0%, #313131 100%);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 72px;

    height: 100vh;
}

body > img {
    width: 156px;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.button{
    text-decoration: none;

    background: #3F3F3F;

    width: 500px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;

    padding: 14px;

    border-radius: 10px;

    position: relative;

    transition: border 0.6s;

    border: 1px solid #3F3F3F;


}

.button:hover{
    border: 1px solid var(--white);
}

.button > img{
    position: absolute;
    left: 16px;
    top: 50%;

    transform: translateY(-50%);
}

.button h1{
    font-weight: 400;
    color: var(--white);
    font-size: 24px;
}

.button p{
    font-weight: 400;
    color: var(--grey);
    font-size: 12px;

    max-width: 200px;
    text-wrap: wrap;
    text-align: center;

}

@media(max-width: 540px){
    main{
        width: 100%;
        padding: 0 24px;
    }

    .button{
        width: 100%;
    }
}