:root {
    --blue: #4262F0;
    --white: #ffffff;
    --grayText: #545861;
    --textColor: #191B1F;
    --herobg: #FDFBF8;
    --footertxtColor: #717680;
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, segoe ui, Roboto, Helvetica, Arial, sans-serif, apple color emoji, segoe ui emoji;
}

a {
    text-decoration: none;
    color: var(--blue);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: unset;
    padding: unset;
}

ul {
    list-style: none;
    margin: unset;
    padding: unset;
}

.ce-container {
    max-width: 620px;
    margin: 0 auto;
    padding: 0 30px;
}


.ce-main-section {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
/* Header style*/

.ce-header-logo { 
    display: flex;
    justify-content: center; 
}

.ce-header-logo a {
    display: block;
}

.ce-header-logo img {
    max-width: 100px;
}

.ce-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.ce-content h1 {
    text-align: center;   
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;  
    color: var(--textColor);
}

.ce-content p {
    text-align: center;   
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px; 
    text-align: center; 
    color: #42464D;
}

.status-follow-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.status-follow-section h2 { 
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    text-align: center;  
    color: #42464D;
}

.status-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.status-links a { 
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px; 
    text-align: center;  
    color: var(--blue); 

}
.ce-main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.flex-grow-1 {
    flex-grow: 1;
}
.place-center {
    display: flex;
}
.ce-footer-copyright {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 30px;
    align-items: center;
}
.ce-footer-copyright p { 
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center; 
    color: var(--grayText);
}

@media (max-width:767px) {
    .ce-footer-copyright {
        flex-direction: column;
    }
}

