body {
	background-image: url("background.jpg");
    background-size: cover;      
    background-repeat: no-repeat; 
    background-attachment: fixed;
    padding: 0;
}

.phar1 {
	background-image: url("code.jpg");
    background-size: cover;      
    background-repeat: no-repeat; 
    background-attachment: fixed;
	background-color: rgba(100, 100, 100, 0.4); 
    background-blend-mode: multiply;
	width: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
    box-sizing: border-box;
	outline: 2px solid black;
    outline-offset: 1px; 
    border-radius: 12px;
    padding: 0;	            
    margin: 0 auto;                 
    padding: 60px 20px;         
    text-align: center;
    color: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 0;
}
.phar1 h1 {
    margin-bottom: 30px;
    font-family: Arial, sans-serif;
	font-size: 50px;
	color: white;
}

.phar1 p {
    font-family: Arial, sans-serif;
    margin: 0px 0;
	font-size: 30px;
	color: white;
}
.button-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;                            
    justify-items: center;                 
    margin: 0 auto;
    width: max-content;                    
}

button {
    padding: 20px;
    font-size: 40px;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    width: 400px;
    height: 200px; 	
    background: rgba(0, 123, 210, 0.3);
    color: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    background-image: url('gitlogo.jpg');
    background-repeat: no-repeat;
    background-position: 15px center;
    background-size: 65px 65px;
    padding-left: 60px;
}
button:hover {
    background: rgba(0, 123, 210, 0.4);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);

    background-image: url('python.jpg');
    background-repeat: no-repeat;
    background-position: 15px center;
    background-size: 65px 65px;

    padding-left: 60px;
}

button:active {
    transform: translateY(1px);
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.25);
}
.phar2 {
	display: flex;
	gap: 15px;
    width: auto;
    margin: 0 auto;
    background: lightgray;
    text-align: left;
    padding: 20px;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
	background: rgba(255, 255, 255, 0.2);
}
.text-container1, 
.text-container2, 
.text-container3 {
    flex: 1 1 250px;  
    max-width: 300px;
	width: auto;
    margin: 0 auto;
    background: lightgray;
    text-align: left;
    padding: 20px;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
	background: rgba(230, 255, 230, 0.2);
	transition: all 0.3s ease
}
.text-container1:hover,
.text-container2:hover,
.text-container3:hover {
	background: rgba(230, 255, 230, 0.5);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}
.Contact {
	background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);   
    display: flex;        
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;          
}
.Contact p, .Contact a {
	font-family: Arial, sans-serif;
    margin: 0;	
}
.Contact p{
	color: white;
}
.Contact a{
	color: purple;
}
/* Mobile Support */
@media (max-width: 768px) {
	body {
		background-attachment: scroll; 
        background-size: cover;
	}

    .button-container {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 10px;
    }

    button {
        width: 90vw;        
        height: 140px;       
        font-size: 28px;    
        background-size: 45px 45px; 
        background-position: 10px center;
        padding-left: 60px;
    }

    .phar2 {
    width: fit-content;         
    max-width: 95vw;            
    padding: 15px;               
    margin: 0 auto;     
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;

    }

    .text-container1,
    .text-container2,
    .text-container3 {
        width: 100%;                 
		max-width: 400px;            
		margin: 10px 0;
    }
    .phar1 h1 { font-size: 32px; }
    .phar1 p { font-size: 20px; }
}


	
	







