* {
    margin: 0;
    padding: 0;
}
body {
    background: #111;
    font-family: "Roboto", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.box {
    margin-top: 20px;
    max-width: 450px;
    width: 90%;
    padding: 12px;
    background: #161616;
    align-items: center;
    display: block;
    border-radius: 20px;
    border: 2px solid #333;
}

.title {
    text-align: center;
    margin-bottom: 10px;
    color: #fff;
}
.btns {
    margin-top: 3px;
    justify-content: space-between;
    display: flex;
    align-items: center;
} 

.btn {
    padding: 12px 6px;
    border: 2px solid #333;
    border-radius: 10px;
    background: transparent;
    color: #fff;
    outline: 0;
    width: 100%;
    font-size: 16px;
    margin: 5px;
    transition: 0.3s;
}

.btn:hover {
    border: 2px solid #FF1D00;
    border-radius: 30px;
}

.glow:hover {
    box-shadow: 0 0 20px #FF1D00;
}

.ava {
    margin-top: 20px;
    justify-content: center;
    align-items: center;
    width: 40%;
    max-width: 160px;
    border-radius: 50%;
    border: 1px solid #2d2d2d;
    box-shadow: 0 0 20px #FF1D00;
}

