/*
    CSS file
*/
body {
    background-color: rgb(7, 7, 7);
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
    overflow: hidden;
}

.page {
    text-align: center;
    color: white;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100vh;
}
.page__logo {
    margin-top: 7vh;
}
.page__footer {
    margin-bottom: 15vh;
}
h2 {
    font-size: 18px;
    font-weight: normal;
    @media (max-width: 992px) {
        
    }
}
h1 {
    font-size: 50px;
    font-weight: bold;
}
.input--text {
    padding: 12px 24px;
    font-size: 16px;
    color: white;
    background-color: transparent;
    border: 1px solid #888;
    border-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

button {
    background-color: #076542;
    border-radius: 4px;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    color: white;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    transition: background-color 300ms ease-out;
}
button:hover {
    background-color: #054a30;
    cursor: pointer;
}
.input--text:focus {
    border-color: #076542;
    outline: none;
}
@media only screen and (max-width: 992px){
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 16px;
    }
    .page__logo {
        margin-top: 10vh;
    }
}
@media only screen and (max-width: 576px){
    h1 {
        font-size: 26px;
    }
    h2 {
        font-size: 14px;
    }
    .input--text {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        margin-bottom: 12px;
    }
    .input__wrapper {
        flex-direction: column;
    }
    
    button {
        width: 251px;
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }
}

.facebook {
  transition: 0.25s;
}

.facebook:hover {
	filter: brightness(0.5) sepia(1) hue-rotate(160deg) saturate(6);
}

.youtube {
  transition: 0.25s;
}

.youtube:hover {
	filter: brightness(0.5) sepia(1) hue-rotate(310deg) saturate(6);
}