*{
    font-family: 'Courier New', Courier, monospace;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: white;
}
body{
    background: linear-gradient(to left bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0.767),rgb(98, 105, 2));
    min-height: 100vh;
    height: 100%;
    justify-items: center;
}
.homePage {
    position: absolute;
    top: 0;
    left: 50%;
    font-size: 30px;
    margin: 30px 0;
    text-decoration: none;
    color: rgb(255, 255, 255);
    transition: all 0.4s ease-in-out;
}
.homePage:hover {
    scale: 1.1;
}
.fa-house-crack:hover {
    color: goldenrod;
}
h1 {
    margin-top: 80px;
    margin-bottom: 20px;
    font-size: 45px;
    text-shadow: 5px 5px 2px rgba(255, 255, 255, 0.596);
}
h2, label {
    margin: 15px 0;
    font-size: 25px;
    font-weight: 700;
    color: white;
}
select {
    background-color: black;
    font-size: 17px;
    font-weight: 700;
}
div {
    display: grid;
    justify-content: center;
}
p {
    color: goldenrod;
    font-size: 18px;
    font-weight: 500;
}
button {
    color: goldenrod;
    font-size: 19px;
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0);
    margin: 10px 0;
    transition: ease-in 0.3s;
}
button:hover {
    scale: 1.1;
    box-shadow: 0px 3px  20px rgb(255, 255, 255);
}
/*----------------------------  small screen -----------------------------*/
@media only screen and (max-width: 1000px){
    body {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    h1 {
        font-size: 33px;
    }
}