body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.header {
    background-color: #6A9AD0;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    width: 85%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 85%;
}

.info-box {
    background-color: #E0EAF6;
    color: #000000;
    text-align: center;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.main_text {
    font-size: 130%;
    font-weight: bold;
}

.sub_text {
    margin-top: 2%;
    margin-bottom: 2%;
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.rectangle {
    width: 50px;
    height: 20px;
    background-color: #FFCC33;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 25px solid #FFCC33;
}

.footer {
    background-color: #E4EFDB;
    color: #000000;
    text-align: center;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .header, .content {
        font-size:11px !important;
        width: 95%;
    }

    .sub_text br {
        display: none;
    }

    .info-box {
        margin-bottom: 10px;
    }
    
    .arrow {
        margin-bottom: 10px;
    }

    .rectangle {
        width: 40px;
        height: 15px;
    }

    .triangle {
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
        border-top: 20px solid #FFCC33;
    }

    .main_text {
        font-size: 120%;
    }
}
