* {
    box-sizing: border-box;
}

body {
    font-family: "Trebuchet MS", sans-serif;
    background-color: #C8C8C8;
}

header {
    display: flex;
    justify-content: center;
    padding: 15px;
    margin: 0 auto;
    max-width: 960px;
}

.container {
    max-width: 960px;
    background-color: white;
    margin: 0 auto;
    height: auto;
    box-shadow: 3px 7px 18px #888888;
}

h2 {
    padding: 5px;
    margin-top: 20px;
}

.password {
    height: 160px;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border-color: #C8C8C8;
    text-align: center;
}

button {
    background-color: #FA0C2C;
    border: none;
    color: white;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
    margin-bottom: 15px;
    border-radius: 12px;
}

#copy {
    float: right;
    background-color: #D2D2D2;
}

@media only screen and (max-width: 395px) {
    #copy {
        float: left;
    }
}