/*Resets*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


/*Style*/

body{
    display: flex;
    font-family:  ethnocentric, sans-serif;
    color: #ffffff;
    background-color: #0A0A0A;
    text-align: center;
    justify-content: center;
    align-content: center;
}

main{
    display: flex;
    width: 80%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    align-content: center;
}

div{
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
}

img{
    width: 70%;
    margin-bottom: 50px;
    max-width: 800px;
}

h1{
    font-size: 42px;
    width: 70%;
    max-width: 800px;
}

h3{
    margin: 40px 0 25px 0;
    width: 70%;
    max-width: 800px;
}

a{
    color: #42C0EF;
    width: 70%;
    max-width: 800px;
}



@media only screen and (min-width: 300px) {

    main{
        width: 90%;
    }
    
    img{
        width: 90%;
    }
    
    h1{
        font-size: 20px;
        width: 90%;
    }

    .logo_txt.top{
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .logo_txt.bot{
        font-size: 24px;
        margin-bottom: 40px;
    }
}



@media only screen and (min-width: 600px) {

    main{
        width: 90%;
    }
    
    img{
        width: 90%;
    }
    
    h1{
        font-size: 32px;
        width: 90%;
    }

    .logo_txt.top{
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .logo_txt.bot{
        font-size: 50px;
        margin-bottom: 40px;
    }
}



