
 @import url('https://fonts.googleapis.com/css2?family=Kaisei+Opti&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=PT+Sans:wght@400;700&family=Spectral:ital,wght@0,300;0,400;1,300&display=swap');

 /* Ben Adenle | datapitch@gmail.com | +2348099999928 */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

h1 
{
    font-family: 'Kaisei Opti', serif;
    font-weight: 200;
    font-size: 2em;
}

h4
{
    text-transform: uppercase;
    font-size: 0.6em;
    letter-spacing: 3px;
}


.main 
{
    position: relative;
    background: #0F294E url('../img/Haraya-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
    padding-top: 30px;
}


.main img
{
    width: 100%;
    max-height: 150px;
    padding: 30px;
}

.main ul 
{
    margin-top: 10%;
    margin-bottom: 15%;
    position: relative;
    display: flex;
    font-size: 0.9em;
    font-weight: 500;
    text-transform: uppercase;
}

.main ul li 
{
    background: #fff;
    max-height: 50px;
    min-width: 100px;
    margin: 5px;
    padding: 5px 10px;
    border-radius: 2px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);
    list-style: none;
    text-align: center;
}

@media screen {
    
}
.comes
{
    margin-top: 50px;
    margin-bottom: 10px;
}

.message
{
    font-family: 'Kaisei Opti', serif;
    text-align: center;
    font-size: 0.9em;
    color: #0F294E;
    margin-top: -30px;
    font-weight: 600;
}
.message span 
{
    text-decoration: underline;
    text-transform: uppercase;
}

.footer
{
    position: absolute;
    width: 100%;
    height: 25px;
    background: #0F294E;
    bottom: 0;
    color: antiquewhite;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.6em;
}

/* responsiveness  */

@media screen and (max-width: 768px)
{
    h1 {font-size: 1.2em;}

    .main ul 
    {
        margin-top: 30px;
        flex-direction: column;
        font-size: 0.7em;
    }
    .message { font-size: 0.7em; }
}