* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 50px;
	border:1px solid #e3822d;
	border-radius:25px;
	align-items: center;
}

.logo {
    max-width: 450px;
    margin-bottom: 30px;
}

h1 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #e3822d;
}

p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 30px;
}

.divider {
    width: 60px;
    height: 3px;
    background: #e3822d;
    margin: 25px auto;
    opacity: 0.4;
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    font-size: 13px;
    opacity: 0.6;
}

@media (max-width: 600px) {
    h1 { font-size: 26px; }
    p { font-size: 16px; }
	.logo {max-width:85%}
	.container {max-width:85%}
}
