body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}
.container {
    text-align: center;
    margin-top: 400px;
}
h1 {
    font-size: 54px;
    margin-bottom: 20px;
}
.links {
    margin-top: 20px;
}
.links a {
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
    color: #333;
}
.links a:hover {
    color: #007bff;
}


.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.background img {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}


p {
    font-size: 20px;
}


.buttons {
    margin-top: 30px;
}


.buttons button {
    padding: 10px 15px;
    margin: 0 5px;
    font-size: 18px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 10px;
}
.buttons button:hover {
    background-color: #0056b3;
    transition-duration: 0.5s;
}


.buttons img {
    margin-right: 10px; 
    width: 55px; 
    height: 55px; 
    border-radius: 5px;
    
}


@media (max-width: 768px) {
    h1 {font-size: 34px;}
    p {font-size: 15px;}
    .container {margin-top: 200px;}
    .buttons button {
        padding: 10px 5px;
        margin: 0;
        font-size: 14px;
    }

}
