body {
    padding: 0px;
    margin: 0px;
    overflow: auto;
    background-color: rgb(83, 83, 83);
}

.header {
    background-image: url(bcg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 25%;
    padding-top: 8%;
    padding-bottom: 15%;
    margin-bottom: 5%;
    border-bottom: 15px solid black;
    border-top: 15px solid black;
}

.header h1 {
    font-size: 60px;
    width: 60%;
    margin: 0 auto;
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 800;
    font-style: italic;
    text-shadow: 13px 8px 3px #000000, -2px -2px 0px #000000;
    color: rgb(46, 201, 212);
    transition: 300ms;
}

.header a {
    text-decoration: none;
}

.header h1:hover {
    transform: scale(1.2);
    transition: 500ms;
}

.chosen {
    display: inline;
    justify-content: space-around;
    padding-bottom: 2%;
    border-bottom: 20px solid black;
}

.chosen img {
    width: 85%;
    border: 7px solid black;
    transition: border-color 300ms;
    display: block;
    margin: 0 auto;
}

.assasin, .warlock, .hunter {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: color 300ms;
}

.text {
    margin-bottom: 10px;
    font-size: 30px;
    text-align: center;
    color: rgb(204, 204, 204);
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    transition: color 300ms;
}

.description {
    margin-top: 10px;
    font-size: 16px;
    text-align: center;
    color: rgb(204, 204, 204);
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    margin-bottom: 50px;
}

.chosen a {
    text-decoration: none;
}

.assasin:hover img, .warlock:hover img, .hunter:hover img {
    border-color: rgb(39, 176, 185);
}

.assasin:hover .text, .warlock:hover .text, .hunter:hover .text {
    color: rgb(46, 201, 212);
}
