@font-face {
    font-family: 'Quicksand';
    src: url('/Fonts/Quicksand.ttf') format('truetype');
}

body {
    margin: 0;
    overflow: hidden;
    background-color: #14151A;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    flex-direction: column;
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 30%;
    max-height: 30%;
    z-index: 5;
}

.button-container {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers buttons horizontally */
    gap: 35px; /* Adds spacing between buttons */
    width: max-content; /* Prevents stretching */
}

.get-it-button {
    background-color: #7B0C09;
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    padding: 15px 35px; /* Adjusted padding to make both buttons equal in width */
    border: none;
    border-radius: 15px;
    cursor: pointer;
    z-index: 10;
    text-align: center;
    min-width: 250px; /* Ensures buttons are the same width */
}

.get-it-button-recommended {
    outline: #ffb20b;
    outline-width: 10px;
    background-color: #7B0C09;
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    padding: 15px 35px; /* Adjusted padding to make both buttons equal in width */
    border: none;
    border-radius: 15px;
    cursor: pointer;
    z-index: 10;
    text-align: center;
    min-width: 300px; /* Ensures buttons are the same width */
}

.get-it-button:hover {
    background-color: #9F1311;
}

.title {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Quicksand', sans-serif;
    font-size: 72px;
    color: white;
    text-align: center;
    z-index: 10;
}

.subtitle {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Quicksand', sans-serif;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.705);
    text-align: center;
    z-index: 10;
    max-width: 90vw; /* Makes sure it fits within the screen */
    white-space: normal; /* Allows text to wrap properly */
    word-break: break-word; /* Prevents awkward breaks */
}

.raindrop {
    position: absolute;
    background-color: #282E4D;
    opacity: 0.7;
    border-radius: 2px;
    animation: fall linear infinite;
}

@keyframes fall {
    from {
        transform: translate(0, -100px);
    }
    to {
        transform: translate(0, 100vh);
    }
}

.tree-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
}

.tree-container img {
    width: 100%;
    height: 100%vh;
}

@media (min-width: 769px) {
    .tree-container img {
        height: 80vh;
    }
}

@media (max-width: 768px) {
    .tree-container img {
        max-height: 100vh;
    }

    .title {
        font-size: 50px;
    }

    .subtitle {
        font-size: 30px;
    }

    .get-it-button {
        font-size: 18px;
        padding: 12px 25px;
    }

    .logo {
        max-width: 50%;
        max-height: 50%;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 40px;
    }

    .subtitle {
        font-size: 25px;
    }

    .get-it-button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .logo {
        max-width: 60%;
        max-height: 60%;
    }
}

.top-image {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 80px;
    height: 80px;
}
