@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
* {
    box-sizing: border-box;
}

html{
    background-image: url("img/bg_compressed.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 100%;
}
body {
    background: rgba(0,0,0,0.50);
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: "Outfit", sans-serif;


}
.formWrapper {
    width: 100vw;
    height: 100vh;
    position: fixed;
    bottom: 0;
    display: grid;
    place-items: center;
    
}

@media only screen and (max-width: 550px) {
    body{
        display: flex;
        flex-direction: column; 
        text-align:center;
    }
    h1{

font-size:2.8rem;

    }
  p {
    word-wrap: break-word;
    word-break: break-word;
    max-width: 90%;
    line-height: 1.4;
    font-size: 1.2rem;
    text-align: center;


      
  }


    .formWrapper {

        position: static; 
        min-height: 100vh;
        padding: 10px;
    }
    input, button {
        width: calc(100% - 20px); 
        max-width: 100%;
        font-size: 5vw !important;

    }
    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    }

input, button {
    margin: 5px;
    display: block;
}

input {
    width: 50vw;
    height: 7vh;
    text-align: center;
    font-size: 1.5vw;
    border: 5px solid black;
    background: rgba(255,255,255,0.5);
    color: black;
    transition: 0.5s ease;
    box-sizing: border-box;
    border-radius: 8px;
}

input:focus, input:hover, button:focus, button:hover, button:active {
    border: 5px solid white;
    background: rgba(0,0,0,0);
    color: white;
}

button {
    width: 50vw;
    height: 7vh;
    text-align: center;
    font-size: 1.5vw;
    border: 5px solid black;
    background: rgba(255,255,255,0.5);
    color: black;
    transition: 0.5s ease;
    border-radius: 8px;
}
h1, p{
    color: white;
    margin: 0;
    padding: 0;
}