* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    width: 100%;
}

.title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.center-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.text a {
    text-decoration: none;
    color: #333;
    font-size: 30px;
}

.text a:hover {
    color: #007BFF;
}

@media (max-width: 600px) {
    .title {
        font-size: 24px;
    }
    
    .text a {
        font-size: 18px;
    }
}