*{
    color: #f0f0f0;
}
body{
    display:flex;
    font-family:Arial, sans-serif;
    background:#111111;
    align-items:center;
    justify-content:center;
    height:100vh;
}
.card{
    box-shadow: 2px 2px 20px black;
    text-align: center;
    background: #222222;
    height:700px;
    width:350px;
    padding:10px;
    border-radius: 10px;
}

img{
    border-radius: 10px;
    width:300px;
    box-shadow:2px 2px 10px black;
}

button{
    background:#a30b00;
    padding:10px 20px;
    margin:20px 10px;
}

button:hover{
    background:red;
    cursor: pointer;
}