@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');


*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins","Bebas Neue", sans-serif;
}

body {
    min-height: 100vh;
    background-color: #080808;
}

.biggerboy {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: #080808;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}


/*Creates left hand logo for nav bar*/
.logo a{
    color: white;
    font-family: "Bebas Neue";
    font-size: 40px;
    font-weight: 500;
    padding: 0 2rem;
    text-decoration: none;
}

.nav-items a {
    position: relative;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin-left: 40px;
}

.nav-items a:not(.menu-icon)::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.nav-items a:not(.menu-icon):hover::before {
    width: 100%;
}
.container {
    display: flex;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.btn1 {
    font-weight:600;
    text-shadow: 1px 1px 10px #080808;
    padding: 80px;
    font-size: 20px;
    border: 2px solid #fff;
    color: white;
    background-color: transparent;
    cursor: pointer;
    margin: 10px;
    margin-left: 100px;
    margin-right: 100px;
    transition-property: transform;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    transition-delay: 0s;
}

.btn--block{
    width: 60%;
    display: inline-block;
}

/*Allows button to move up when hovered over with cursor*/
.btn1:hover{
    transform: translateY(-10px);
}
.btn2 {
    font-weight:600;
    text-shadow: 1px 1px 10px #080808;
    padding: 80px;
    font-size: 20px;
    border: 2px solid #fff;
    color: white;
    background-color: transparent;
    cursor: pointer;
    margin: 10px;
    transition-property: transform;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    transition-delay: 0s;
}
/*Allows button to move up when hovered over with cursor*/
.btn2:hover{
    transform: translateY(-10px);
}
.btn3 {
    font-weight:600;
    text-shadow: 1px 1px 10px #080808;
    position: absolute;
    padding: 80px 400px;
    font-size: 20px;
    border: 2px solid #fff;
    color: white;
    background-image: url(/images/blurbuttonother.png);
    cursor: pointer;
    margin: 10px;
    top: 650px;
    transition-property: transform;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    transition-delay: 0s;
}
/*Allows button to move up when hovered over with cursor*/
.btn3:hover{
    transform: translateY(-10px);
}

.sidebar{
    position: fixed;
    display: none;
    top: 0;
    right: 0px;
    height: 100vh;
    width: 250px;
    z-index: 1000;
    background-color: #0808084d;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.103);
}
.nav-item-side a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50px;
    padding-bottom: 10px;
    padding-top: 10px;
    position: relative;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: white;
    text-indent: 20px;
}

.sidebar .logo a{
    display: block;
    padding-bottom: 10px;
    text-align: center;
}

.sidebar a:hover {
    background-color: rgba(14, 14, 14, 0.336);
}

.menu-icon {
    fill: #fff;
    top: 5px;
    display: none;
}

.close-icon {
    fill: #fff;
    padding-top: 30px;
    padding-left: 174px;
    
    display: block;
    
}

@media(max-width: 910px){
    .hideOnMobile{
        display: none;
    }
    .menu-icon{
        display: block;
    }
}
@media(max-width: 400px){
    .sidebar{
        width: 100%;
    }
}