.grid-master {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    padding: 10px;
    border-radius: 14px;
    color: white;
    height: 750px;
}
.grid-left {
    grid-area: 1 / 1 / 2 / 2;
    padding: 10px;
}
.grid-right {
    grid-area: 1 / 2 / 3 / 3;
    padding: 25px;
    background: #111; 
    padding-top: 5px; 
    padding-bottom: 5px; 
    border-radius: 200px; 
    border-bottom-right-radius: 50px; 
    border-top-left-radius: 50px;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.grid-master p {
    color: #a0a0a0;
    padding: 5px;
}
.grid-right h3 {
    margin-top: 60px;
    text-align: center;
    margin-bottom: 25px;
}
.grid-right hr {
    margin-top: auto;
    text-align: center;
}
.grid-right .h1 {
    font-size: 3em;
    font-weight: 800;
}
.grid-right .a {
    border-radius: 25px;
    background-color: white;
    padding: 12px;
    border: 1px solid #a0a0a0;
    text-decoration: none;
    color: black;
}
.grid-right .bottom-box {
    text-align: center;
    margin-bottom: 30px;
}
.grid-right .middle-box {

}
.grid-bottom {
    grid-area: 2 / 1 / 3 / 2;
    padding: 10px;
    display: flex;
    flex-direction: column;
}
.grid-bottom p {
    margin-top: auto;
    text-align: center;
    margin-bottom: 10px;
}