body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(233, 233, 233);
}
a {
    text-decoration: none;
    color: white;
    background-color: rgb(24, 98, 189);
    border-radius: 10px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 155px;
    height: 30px;
    width: 90px;
    bottom: 30px;
    transition: all 0.3s ease;
}
a:hover {
    background-color: rgb(18, 49, 88);
}
#mainBox {
    position: absolute;
    text-align: center;
    height: 200px;
    width: 400px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 0px 13px 9px rgba(0,0,0,0.47);
}
.title {
    font-size: 2em;
}
.second {
    text-align: left;
    color: rgb(96, 96, 96);
    margin-left: 30px;
    position: absolute;
    top: 70px;
}