body {
    background-color: #204899;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    margin: 0;
}

.logo  {
    position: relative;
    display: inline-block;
}
.logo img {
    max-width: 100%;
}
.logo img:nth-child(2) {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -20px);
    display: block;
    width: 200px;
}
h2 {
    color: #fff;
    text-transform: uppercase;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 70px;
    letter-spacing: 15px;
}


@media screen and (max-width: 500px) {
    .logo img:nth-child(2) {
        width: 150px;
        transform: translate(-50%, -20%);
    }
    h2 {
        font-size: 30px;
        letter-spacing: 10px;
    }
}