body{
    background-image: url("background-blue.jpg");
    background-repeat:no-repeat;
    background-position: center top;
    background-size: cover;
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
}

#card{
    width: 30vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

#card hr {
    width: 75%;
    height: 3px;
    background-color: #fff;
    border: none;
    margin: 20px;
}

#card img{
    width: 60%;
}

#card #coming-soon{
    color: #fff;
    font-style: italic;
    font-size: 1.6vw;
    text-shadow: 4px 4px 5px #0000004c;
    letter-spacing: 0.7vw;
    padding-left: 0.7vw;
    text-align: center;
    margin: 0;
}

#card form{
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#card form input{
    width: 100%;
    text-align: center;
    height: 50px;
    font-size: 14px;
    margin: 3px;
    padding: 0;
    border: none;
}

#card form input[type="submit"]{
    background-color: #546acd;
    font-weight: 800;
    color: #fff;
}

#card form input[type="submit"]:focus-visible{
    outline: none;
}

#card #GMPJ-info{
    color: #fff;
    margin: 0;
    font-size: 1.2vw;
    text-align: center;
}

@media (max-width: 550px) {
    
    #card{
        width: 85vw;
    }

    #card img{
        width: 75%; 
    }

    #card #coming-soon{
        font-size: 6vw;
    }

    #card #GMPJ-info{
        font-size: 4.5vw;
    }

  }
  