* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
    font-style: none;
    list-style: none;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    transition: all 0.2s ease-out;
}

/* HEADER */

header {
    position: fixed;
    z-index: 999;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background-color: black;
}

header h1 {
    font-size: 1.75rem;
    color: #fff;
}

header ul a {
    margin: 0rem 0.95rem;
    color: #fff;
}

header ul a:hover {
    color: #1a6ff0;
}

/* BANNERS */

video {
    position: fixed;
    z-index: -999;
}

.homeTxt {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 4rem;
}

.homeTxt p {
    font-size: 27px;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #FFF;
    color: #000;
}

.homeTxt p:hover {
    background-color: #145dca;
    color: #fff;
}

.homeForm {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: absolute;
}

.homeForm form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem;
    background-color: rgb(255, 255, 255, 0.90);
    border-radius: 2rem;
}

.homeForm form input {
    margin: 15px 0px;
    width: 25rem;
    height: 3rem;
    padding: 15px;
    border-radius: 50px;
    border: none;
}

.homeForm form button {
    margin: 15px 0px;
    width: 25rem;
    height: 3rem;
    padding: 15px;
    border-radius: 50px;
    border: none;
    background-color: #000;
    color: #FFF;
}

.homeForm form label {
    margin-bottom: 10px;
}

.homeForm form button:hover {
    background-color: #145dca;
    color: #FFF;
}