@CHARSET "UTF-8";

* {
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background: url(https://unsplash.it/1920/1080/?random) #696969 fixed no-repeat;
    background-size: cover;
}

#id_card {
    width: 500px;
    height: 300px;
    padding: 10px;
    border-radius: 3px;
    background-color: #fefefe;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.8);
    transition: 0.3s;
}

#id_card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.9);
}

#id_img {
    /*margin: 20px auto;*/
    background: url("../img/N0R7H-75.png");
    border-radius: 50%;
    width: 75px;
    height: 75px;
    margin: 0 10px;
    float: left;
}

.content {
    width: 450px;
    /*height: 200px;*/
    padding: 10px;
}

.center {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    margin: 0;
}