body{
    color: #fff;
    background: #592271;
}

#wrapper{
    display: block;
    position: absolute;
    width: 1000px;
    height: 600px;
    left: 50%;
    top:50%;
    margin-left: -500px;
    margin-top: -350px;
    /*background: #ccc;*/
}


#logo{
    display: block;
    position: relative;
    width: 50%;
    left: 25%;
    float: left;
}

#msg{
    font-family: Arial, sans-serif;
    display: block;
    position: relative;
    float: left;
    width: 100%;
    height: 40px;
    padding-top: 50px;
    text-align: center;
    color: white;
    font-size: 25px;
}

@media screen and (max-width: 720px)
{
    #wrapper{

        width: 100%;
        height: 600px;
        left: unset;
        top: 100px;
        margin-left: unset;
        margin-top: unset;
    }

    #logo{
        display: block;
        position: relative;
        width: 80%;
        left: 10%;
        float: left;
    }
}

@media screen and (max-width: 580px)
{
    #msg{
        font-size: 20px;
    }
}

@media screen and (max-width: 360px)
{
    #msg{
        padding-top: 10px;
        font-size: 16px;
    }
}

@media screen and (max-width: 280px)
{
    #msg{
        font-size: 14px;
    }
}