body {
    margin: 0;
    padding: 0;
    background: url(/fog.jpg);
    background-size: cover;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.box {
    margin: 2rem;
    background-color: #6b5858;
    padding: 40px;
    text-align: center;
    color: #fff;
    font-family: sans-serif;
    border: 2px solid black;
    border-radius: 10px;
}

.box img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    transition: 0.5s;
    cursor: pointer;
}

.box img:hover {
    transform: scale(1.2);
}

.box h1 {
    font-size: 30px;
    letter-spacing: 2px;
    font-weight: bolder;
}

.box h4 {
    font-size: 25px;
    font-weight: normal;
    letter-spacing: 1px;
}

.box p {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
}

ul {
    margin: 0;
    padding: 0;
}

.box li {
    display: inline-block;
    margin: 6px;
    list-style-type: none;

}

.box li a {
    color: white;
    font-size: 35px;
    letter-spacing: 5px;
    transition: all ease-in-out 250ms;
}

.box li a:hover {
    color: #b9b9b9;
}

@media (min-width: 1200px) {
    .box {
        margin-left: 30rem;
        margin-right: 30rem;
    }
}
