


body{
    margin: 0;
    font-size: 18px;
    background-color: rgb(93,159,234);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

.home-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 17px;
    text-align: left;
}

mark {
    background-color: rgb(224,255,255);
    color: black;
  }

.home-box h3{
    font-size: 17x;
    text-align: center;
}

.home-box h4{
    font-size: 15x;
    text-align: center;
    color: #18045e;
    border: 5px solid rgb(93,159,234);
    padding: 1%;
}

.home-box h5{
    font-size: 13px;
    text-align: center;
    color: #18045e;
    text-decoration: underline;
    }
 
.custom-box{
    max-width: 700px;
    background-color: #ffffff;
    margin: 20px auto;
    padding: 30px;
    border-radius: 10px;
    animation: fadeInRight 1s ease;
    text-align: left;
}

@keyframes fadeInRight{
    0%{
        transform: translateX(40px);
        opacity: 0;
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}
.custom-box::before,
.custom-box::after{
    content: '';
    clear: both;
    display: table;
}
.custom-box.hide{
    display: none;
}