@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic);
@import url(https://fonts.googleapis.com/css2?family=Raleway:wght@400;900&display=swap);


*{

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;


}
.logo {
    position: absolute;
    z-index: 1000;
    left: 20px;
    top: 20px;
}
.logo img {
    width: 165px;
    height: 53px;
    cursor: pointer;
}



body{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    /* https://source.unsplash.com/city-with-lights-turned-on-during-night-time-hWX2pboBPBk
    background-image: url(https://source.unsplash.com/city-with-lights-turned-on-during-night-time-hWX2pboBPBk);*/
    background-image: url(/static/images/vegas.jpg);
    background-size: cover;
    background-position: center;

}
.title{

    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    text-align: center;
    color: #fff;
}
.main {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
}
.wrap {

    width: max-content;
    margin: 1rem;
    transform-style: preserve-3d;
    transform: perspective(100rem);


}
.wrap2 {

    width: max-content;
    margin: 1rem;
    transform-style: preserve-3d;
    transform: perspective(100rem);


}

.container {
    --rx: 0;
    --ry: 0;
    width: 26rem;
    height: 45rem;
    border: 1px solid rgba(255, 255, 255, 0.125);
    border-radius: 1rem;
    padding: 4rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    -webkit-backdrop-filter: blur(5px) saturate(200%);
    backdrop-filter: blur(5px) saturate(200%);
    background-color: rgba(17, 25, 40, 0.46);
    transform: rotateX(calc(var(--rX)* 1deg)) rotateY(calc(var(--rY)
    *1deg));
    transition: transform 0.6s;
}
.container2 {
    --rx: 0;
    --ry: 0;
    width: 26rem;
    height: 45rem;
    border: 1px solid rgba(255, 255, 255, 0.125);
    border-radius: 1rem;
    padding: 4rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    -webkit-backdrop-filter: blur(5px) saturate(200%);
    backdrop-filter: blur(5px) saturate(200%);
    background-color: rgba(17, 25, 40, 0.46);
    transform: rotateX(calc(var(--rX)* 1deg)) rotateY(calc(var(--rY)
    *1deg));
    transition: transform 0.6s;
}

.container::before,
.container::after{
    pointer-events: none;
    content:"";
    width: 2rem;
    height: 2rem;
    border: 1px solid#fff;
    position: absolute;
    z-index: 2;
    opacity: 0.3;
    transition: 0.3s;

}
.container::before{
    top: 1.5rem;
    right: 1.5rem;
    border-bottom-width: 0;
    border-left-width: 0;
}
.container::after{
    bottom: 1.5rem;
    left: 1.5rem;
    border-top-width: 0;
    border-right-width: 0;
}
.wrap:hover .container::before,
.wrap:hover .container::after{
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);

}
.container p {
    color: #fff;
    font-size: 1rem;

}
.container--active {
    /*class to fix transition when mouse is over */
    transition: none;

}
.form {
    margin-top: 20px;
    z-index: 100;
}
.inputBox {
    position: relative;
    margin-bottom: 43px;
    cursor: pointer;
}
.inputBox input,
.inputBox textarea{
    /*
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    z-index: 101;
    border: none;
    margin-right: 2rem;

    */
    width: 100%;
    padding: 10px;
    outline: 0;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    font-size: 15px;
    margin-right: 4rem;

}
.btn {
    width: 100%;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    color: var(--white-color);
    border-radius: 5px;
    cursor: pointer;
    letter-spacing: 0.2em;
    transition: 0.5s;


}
.btn:hover {
    letter-spacing: 0.65em;
    background: var(--clr);
    box-shadow: 0 0 35px var(--clr);

}


label {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    color: #fff;
    cursor: text;
    transition: 0.2s;

}

.inputBox input:focus~label,
.inputBox input:valid~label {
    top: -35px;
    font-size: 14px;

}

.inputBox input:-webkit-autofill,
.inputBox input:-webkit-autofill:hover, 
.inputBox input:-webkit-autofill:focus, 
.inputBox input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    box-shadow: 0 0 0 30px transparent inset !important;
}

.body2 {
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    background: transparent;
    display: flex;

    
}

a {

    position: relative;
    background: #fff;
    color: #fff;
    text-decoration: none;
    font-size: 2em;
    letter-spacing: 0.1em;
    font-weight: 400;
    padding: 10px 30px;
    transition: 0.5s;

}

a:hover {
    letter-spacing: 0.25em;
    box-shadow: 0 0 35px var(--clr);
    background: var(--clr);
    color: var(--clr);

}

a::before {
    content: "";
    position: absolute;
    inset: 2px;
    background: #000000;

}
a span {
    position: relative;
    z-index: 5;

}
a i {

    position: absolute;
    inset: 0;
    display: block;

}

a i::before{
    content: "";
    position: absolute;
    top: 0;
    left: 80%;
    width: 20px;
    height: 2px;
    background: #000000;
    transform: translateX(-50%) skew(325deg);
    transition: 0.5s;


}

a:hover i::before {
    width:20px;
    left: 20%;

}

a i::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 20px;
    height: 2px;
    background: #000000;
    transform: translateX(-50%) skew(325deg);
    transition: 0.5s;


}

a:hover i::after {
    width:20px;
    left: 80%;
    
}

.outline {

}

.Header {
    color: #eee;
    font-size: 1.75em;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 40px;
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
}

.super-bowl-pic {
    margin-bottom: 10px;
    
}
.layout {
    margin-top: 0px;

}
.Box {
width: 100%;
padding: 10px;
outline: 0;
border: 1px solid #eee;
color: #eee;
background: rgba(0, 0, 0, 0.5);
font-size: 15px;
margin-right: 4rem;
-webkit-font-smoothing: antialiased;
font-weight: 500;
}
.new_box {
    margin-bottom: 10px;
}

.container2::before,
.container2::after{
    pointer-events: none;
    content:"";
    width: 2rem;
    height: 2rem;
    border: 1px solid#fff;
    position: absolute;
    z-index: 2;
    opacity: 0.3;
    transition: 0.3s;

}
.container2::before{
    top: 1.5rem;
    right: 1.5rem;
    border-bottom-width: 0;
    border-left-width: 0;
}
.container2::after{
    bottom: 1.5rem;
    left: 1.5rem;
    border-top-width: 0;
    border-right-width: 0;
}
.wrap2:hover .container2::before,
.wrap2:hover .container2::after{
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);

}
.container2 p {
    color: #fff;
    font-size: 1rem;

}
.container2--active {
    /*class to fix transition when mouse is over */
    transition: none;

}

.social-icon {

    cursor: pointer;
}


