@charset "utf-8";

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: auto;
    -webkit-text-size-adjust: none;
}

div.main {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    position: fixed;
    width: 100%;
    height: 100%;
    
    left: 0;
    top: 0;
    
    background-color: #f0f0f0;
    z-index: 10;
}

div.logo {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    background-image: url(texoleum.logo.2021.duotone.png);
    width: 960px;
    height: 320px;
    margin-bottom: 96px;
}

div.contact {
    font-size: 22pt;
    color: #808080;
    font-family: 'Passion One', sans-serif;
    cursor: pointer;
    width: auto;
}

div.contact:hover {
color: #3d3935;
}

@media only screen and (min-width: 760px) and (max-width: 959px) {

    body {
        width: 600px;
        margin: auto;
    }

    div.logo {
        width:  600px;
        height: 200px;
        margin-bottom: 64px;
    }

}

@media only screen and (min-width: 480px) and (max-width: 759px) {

    body {
        width: 480px;
        margin: auto;
    }

    div.logo {
        width:  460px;
        height: 150px;
        margin-bottom: 32px;
    }
    
    div.contact {
        font-size: 32pt;
    }

}

@media only screen and (max-width: 479px) {

    body {
        width: 360px;
        margin: auto;
    }

    div.logo {
        width:  350px;
        height: 115px;
        margin-bottom: 24px;
    }
    
    div.contact {
        font-size: 24pt;
    }

}



@media
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and ( min-resolution: 144dpi            )
{
    div.logo { background-image: url(texoleum.logo.2021.duotone@2x.png); }
}

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and ( min-resolution: 192dpi          )
{
    div.logo { background-image: url(texoleum.logo.2021.duotone@3x.png); }

}