* { margin: 0; padding: 0; box-sizing: border-box; font-family: sans-serif; }

.box {
    position: absolute;
    width: 300px;
    top: 50%; left: 50%;
    margin: -330px 0 0 -200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #3778F2;
    border-radius: 3%;
    background-color: #194AEF;
    color: #F0F0F0;
}

.title-box img {
    width: 150px;
    height: 50px;
}

.title-box h2 {
    font-size: 40px;
    text-transform: uppercase;
}

.title-box hr {
    width: 100%;
    border: 2px solid black;
}

.content-box {
    margin-top: 5%;
}

.item-box {
    position: relative;
    width: 290px;
    height: 40px;
    margin-top: 5%;
    margin-bottom: 5%;
    text-align: center;
    text-transform: uppercase;
    background-color: #3778F2;
    border-radius: 5%;
    cursor: pointer;
    text-decoration: none;
}

.item-box p {
    position: absolute;
    color: #FFF;
    margin: 5px 0 0 10%;
    font-size: 24px;
}

@media screen and (max-width: 430px) {
    .box {
        top: 0; left: 0;
        margin: 15% 0 0 15%;
    }
}

@media screen and (max-width: 390px) {
    .box {
        top: 0; left: 0;
        margin: 15% 0 0 12%;
    }
}

@media screen and (max-width: 360px) {
    .box {
        top: 0; left: 0;
        margin: 15% 0 0 8%;
    }
}