{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
}

.container
{
    margin: 0;
    padding: 0;
    background-image: url("images/wallpaper-boxes-2.jpg");
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

header {
    width: 100%;
    height: 80px;
    background-color: #061ab1;
    line-height: 80px;
    border-bottom: 5px solid #ffd100;
    position: fixed;
    font-family: 'Raleway', sans-serif;
}

.logo {
    padding-left: 30px;
    padding-top: 25px;
	width: 100%;
    height: auto;
    max-width: 100px;
}

h2 {
    font-size: 35px;
    font-weight: 100;
    text-transform: uppercase;
    color: white;
    float: right;
    margin: 0;
    padding-right: 30px;
    letter-spacing: 5px;
}

.box {
    width: 400px;
    border-bottom: 30px solid #061ab1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.box h3 {
    color: azure;
    background: #061ab1;
    text-align: center;
    padding: 20px 20px;
    font-size: 20px;
    font-weight: 600;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
}

.box ul {
    position: relative;
    background: white;
    margin: 0;
    padding: 0;
}

.box ul li {
    list-style: none;
    padding: 10px 0;
    width: 100%;
    transition: transform 0.2s;
    text-align: center;
}

.box ul:hover li {
    opacity: 0.2;
    
}
.box ul a {
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
}

.box ul li:hover {
    transform: scale(1.2);
    z-index: 100;
    background: #c8e7f2;
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    color: black;
    opacity: 1;
}

footer {
    width: 100%;
    height: 40px;
    background: white;
    line-height: 40px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 3px solid #061ab1;
}

footer ul {
    margin: 0;
    text-align: center;
}

footer ul li {
    list-style-type: none;
    display: inline-block;
}

footer ul li a {
    text-decoration: none;
    color: black;
    padding: 0px 20px;
    text-transform: uppercase;
    font-size: 12px;
}

footer ul li a img {
    margin: 2px;
    height: 35px;
    width: 35px;
}

@media (max-width: 480px) {
    body {
        overflow: scroll;
    }
   
    header {
        z-index: 3;
        top: 0;
    }
    header img {
        display: block;
        width: 50%;
        margin: auto;
        margin-top: 10px;
        padding: 0;
    }
    header h2 {
        display: none;
    }
    
    .box {
        width: 330px;
    }
    
    footer {
        z-index: 3;
    }
}