@import url("./font.css");

:root {
    --btn-color: #fff06b;
}

* {
    font-family: 'Tahoma', 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;
    }
}