/* style.css */

/* General styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.container-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.text-box-custom {
    width: auto;
    max-width: auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 2px solid #2d4059;
    box-shadow: 0 0 10px #ffffff;
    margin: 10px auto;
}

.text-box-custom h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.text-box-custom p {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.text-box-custom a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.text-box-custom a:hover {
    background-color: #48dd09;
}
