@import url("./font.css");

:root {
    --btn-color: #6bffa6;
}

* {
    font-family: 'Bank Gothic', sans-serif !important;
    font-weight: 500 !important;
}

#background {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -1;
    min-width: 100dvw;
    min-height: 100%;
    filter: blur(2px);
    object-fit: cover;
    left: 50%;
    transform: translateX(-50%);
}

.darken {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -1;
    min-width: 100%;
    min-height: 100%;
    background-color: black;
    opacity: 0.6;
}

.logo img {
    z-index: 100;
    width: 350px;
    filter: drop-shadow(5px 5px 5px rgba(0,0,0,1));
}

.buttons {
    margin: 100px;
    margin-bottom: 120px;
}

/* .btn {
    text-decoration: none;
    color: #fff;
    padding: 20px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    text-wrap: nowrap;
    font-size: 24px;
    border-left: 4px solid var(--btn-color);
    border-right: 4px solid var(--btn-color);
}

.btn:hover {
    background: var(--btn-color);
    color: black;
} */

.content {
    display: flex;
    margin: 0 auto;
    width: max-content;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    /* background-color: rgba(0, 0, 0, 0.5);
    border-top: 2px solid rgba(255, 255, 255, 0.1); */
}

.text {
    color: white;
    /* text-shadow: 0px 0px 10px white; */
    max-width: 800px;
    text-align: center;
    font-size: 18px;
}

@media only screen and (max-width: 1024px) {
    .content {
        padding: 0;
        margin: 0 auto;
    }
    .logo img {
        margin-top: 50px;
        width: 200px;
    }
    .text {
        max-width: 350px;
        font-size: 18px;
    }
    .buttons {
        margin-top: 40px;
        margin-bottom: 60px;
        margin-left: 0;
        margin-right: 0; 
    }
    .btn {
        padding: 10px 25px;
    }
    .btn-1:before,
    .btn-1:after {
        border-color: var(--btn-color);
        height: 100%;
        width: 100%;
        box-shadow: 0 0 5px var(--btn-color), 0 0 5px var(--btn-color) inset;
    }
}








button{
    position:relative;
    display:flex;
    margin-top:20px;
    padding: 0;
    border: none;
    background-color: transparent;
    width: 100%;
  }
  
  button a{
    color:white;
    font-family:Helvetica, sans-serif;
    font-weight:bold;
    font-size:36px;
    text-align: center;
    text-decoration:none;
    background-color:#FFA12B;
    display:flex;
    align-items: center;
    justify-content: center;
    position:relative;
    width: 100%;
    padding:20px 40px;
    
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-shadow: 0px 1px 0px #000;
    filter: dropshadow(color=#000, offx=0px, offy=1px);
    
    -webkit-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
    -moz-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
    box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
    
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition: .2s ease-in-out;
  }
  
  button a:active{
    top:10px;
    background-color:#F78900;
    
    -webkit-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
    -moz-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3pxpx 0 #915100;
    box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
  }
  
  button:after{
    content:"";
    height:100%;
    width:100%;
    padding:4px;
    position: absolute;
    bottom:-15px;
    left:-4px;
    z-index:-1;
    background-color:#2B1800;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }