
@import url('styles.css');

body {

    background: linear-gradient(to bottom, #fdfdfe, #969797); 
    
    background-attachment: fixed;
    
    position: relative;
    z-index: 0;

    color: #333;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed; 
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1; 

    background-image: url('../img/background2.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 100%; 

    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgb(124, 122, 122) 30%, rgb(124, 123, 123) 75%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, rgb(125, 122, 122) 30%, rgb(115, 113, 113) 75%, transparent 100%);
}


.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}


.main-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: white;
    letter-spacing: 0.5px;
    margin-top: 400px; 
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


.website-link-container {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    margin-top: auto; 
}

.website-link {
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    word-break: break-all;
}

.website-link:hover {
    color: #666;
    text-decoration: underline;
    transform: scale(1.02);
}


.bottom-logo {
    margin: 20px 0;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
}

.bottom-logo img {
    max-width: 300px;
    height: auto;
    opacity: 0.9;
    filter: invert(0);
}


.nav-buttons {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    margin-top: 20px;
    margin-bottom: 10px;
    justify-content: center;
    width: 100%;
}

.nav-btn {
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    border: 2px solid #333;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    background-color: #333;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.nav-btn:active {
    transform: scale(0.98);
}


@media (max-width: 768px) {
    .main-title {
        font-size: 1.5rem;
        margin: 15px 0;
    }
    
    .website-link-container {
        padding: 15px;
        margin: 15px 0;
    }
    
    .website-link {
        font-size: 1.2rem;
    }
    
    .bottom-logo img {
        max-width: 200px;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 15px;
        margin: 15px 0;
        width: 80%;
    }
    
    .nav-btn {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.2rem;
    }
    
    .website-link {
        font-size: 1rem;
    }
    
    .bottom-logo img {
        max-width: 150px;
    }
}