* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lilita One', sans-serif;
    color: white;
}

body {
    background-color: #0b0c0f;
}

a {
    text-decoration: none;
    transition: transform .2s;
}

.container {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	height: 100vh;
	padding: 15px;
}

.content {
	width: 100%;
	height: 100%;
	background-color: #0b0c0f;
	border-radius: 10px;
	background-image: url(BG-Manja.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center top;
}

.logo {
	text-align: center;
	padding: 25px;
}

.logo img {
	width: 170px;
}

.top {
	display: flex;
	justify-content: space-evenly;
	margin-right: auto;
	margin-left: auto;
	max-width: 350px;
	border-radius: 10px;
	background-color: #025163;
	border: 4px solid #1919d5;
}

.menu-link {
	padding: 15px 10px;
}

.menu-link a i:hover {
	transform: scale(1.5);
}

.menu-link a i {
	color: white;
	font-size: 1.3rem;
    transition: transform .3s;
}

.middle {
	text-align: center;
	background-color: #025163;
}

.middle img {
	width: 190px;
	height: auto;
	margin-top: 30px;
}

.middle h1 {
	font-size: 22px;
	font-weight: normal;
}

.button-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 15px;
}

.button-wrapper a {
	background-color: #025163;
	width: 50%;
	display: block;
	padding: 12px;
	text-align: center;
	border-radius: 5px;
}

.bottom {
	margin-top: 25px;
}

.bottom a {
	transition: transform .3s;
}

.bottom a:hover {
	transform: scale(1.1);
}

@media only screen and (min-device-width : 320px) and (max-device-width : 768px) {
    .top {
        max-width: 320px;
        border-radius: 8px;
        border: 3px solid #1919d5;
    }

    .middle img {
        width: 230px;
    }

    .bottom {
        margin-top: 45px;
    }

    .button-wrapper {
        margin-bottom: 20px;
    }

    .button-wrapper a {
        width: 75%;
    }
}