@import url('https://fonts.googleapis.com/css?family=Notable&display=swap');

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

body{
    background-image: url("BlueBlackbackground.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    height: 100vh; 
    
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: bold;
    text-align: center;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container{
    background-image: url("blackBlueBackground.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px;
    border-radius: 30px;
}

input{
    border-radius: 10px;
    padding: 10px;
    margin-top: 20px;
    width: 25rem;
    font-size: large;
}

button{
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    background: white;
    height: 3rem;
    width: 10rem;
    font-size: large;
}

button:hover{
    color: white;
    background: black;
}

input::placeholder{
    color: black;
    font-size: large;
}


h1 {
    -webkit-text-stroke: 2px black;
    -webkit-text-fill-color: white;
}