@import url('//fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700;800;900&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 8%;
}

header h2 {
    width: 70%;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
}

header strong {
    font-weight: 800;
}

#content_div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px;
}

#content_div h2 {
    padding: 20px;
    font-size: 22px;
    font-weight: 700;
}

#content_div div {
    max-width: 130%;
    height: 48px;
    border-radius: 8px;
    border: 1px solid #FEEECC;
    background: #FEEECC;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.5s;
    /* transform: translateX(-30px); */
    padding: 0px 33px;
}

#content_div div:hover {
    background: #ffd886;
}

#content_div p {
    overflow: hidden;
    color: #000;
    text-decoration: none;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer p {
    color: #848484;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    width: 68%;
}

footer strong {
    color: #404040;
}

#popup_message_div {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    bottom: 20px;
}

#popup_message_div p {
    background: #5e5e5e;
    color: #ffff;
    padding: 2px 10px;
    border-radius: 15px;
    font-size: 12px;
    text-align: center;
    display: none;
}

#update_message {
    font-size: 15px !important;
    text-align: center !important;
    margin: 15px;
}

#content_mail a {
    text-decoration: none;
    color: #000;
}