*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-color: black;
}

p {
    font-size: 30px;
}



.box {
    border: black solid 2px;
    width: 500px;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
}

.box img {
    width: 100%;
}
.content{
    border: white solid 1px;
}