@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');


/* font-family: 'Montserrat', sans-serif; */

body {
    background: rgb(0, 0, 0);
    font-family: 'Montserrat', sans-serif;
}

.menuWrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.menuWrap .toggle {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000;
    cursor: pointer;
    width: 60px;
    height: 60px;
    opacity: 0;
}

/* Hamburger box */
.menuWrap .hamburger {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 60px;
    height: 60px;
    padding: 1rem;
    background-image: linear-gradient(to right, rgb(5,157, 152), rgb(35, 240, 199), rgb(11, 209, 254), rgb(66, 242, 247));
    display: flex;
    justify-content: center;
    align-items: center;
}

.menuWrap .hamburger > div {
    position: relative;
    width: 100%;
    height: 3px;
    background: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.menuWrap .hamburger > div::before,
.menuWrap .hamburger > div::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: inherit;
    z-index: 1000;
}

.menuWrap .hamburger > div::before {
    top: -10px;
}

.menuWrap .hamburger > div::after {
    top: 10px;
}

.menuWrap .toggle:checked + .hamburger > div {
    transform: rotate(135deg);
}

.menuWrap .toggle:checked + .hamburger > div::before,
.menuWrap .toggle:checked + .hamburger > div::after {
    top: 0;
    transform: rotate(90deg);
}

.menuWrap .toggle:checked:hover + .hamburger > div {
    transform: rotate(225deg);
}

.menuWrap .toggle:checked ~ .menu {
    visibility: visible;
}

.menuWrap .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

.menuWrap .menu > div {
    background: rgba(49, 49, 49, 0.8);
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menuWrap .menu .links {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
}

.links ul li {
    list-style-type: none;
    font-size: 3.5em;
    padding: 2em;
}

.links ul li a {
    text-decoration: none;
    color: whitesmoke;
    font-weight: bold;
    text-shadow: 3px 3px 5px rgb(66, 242, 247);
}


.formContainer {
    display: flex;
    background-image: linear-gradient(to right, rgb(5,157, 152), rgb(35, 240, 199), rgb(11, 209, 254), rgb(66, 242, 247));
    justify-content: space-around;
    align-items: center;
    
    max-width: 70%;
    margin: 100px auto;
    padding: 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px #9c9c9c;
    line-height: 1.5;
}

input[type="submit"] {
    border-radius: .7;
    padding: 10px 20px;
    color: rgb(107, 107, 107);
    background-color: rgb(255, 255, 255);
    border: .5;
    border-color: rgb(107, 107, 107);
    border-radius: 8px;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
}

input[type="text"] {
    width: 225px;
    border-radius: 4px;
    border-color: rgb(107, 107, 107);
    border: .5;
    padding: 3px;
    margin-top: 2px;
}

input[type="tel"] {
    width: 175px;
    border-radius: 4px;
    border-color: rgb(107, 107, 107);
    border: .5;
    padding: 3px;
    margin-top: 2px;
    
}
