*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{

    background:#101114;
    color:white;
    padding:40px;
}

h1{
    margin-bottom:30px;
    text-align:center;
}

#downloads{

    max-width:900px;
    margin:auto;
}

.download{

    background:#1d2027;
    border-radius:18px;
    padding:20px;
    margin-bottom:20px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    box-shadow:0 8px 20px rgba(0,0,0,.3);

    transition:.25s;
}

.download:hover{

    transform:translateY(-4px);
}

.left h2{

    margin-bottom:10px;
}

.left p{

    color:#b8b8b8;
    margin:3px 0;
}

button{

    background:#3a86ff;
    border:none;
    color:white;
    padding:14px 24px;
    border-radius:12px;
    cursor:pointer;
    font-size:15px;
}

button:hover{

    background:#5b9dff;
}