
h1 {
    font-size: 26px
}

h2 {
    font-size: 18px
}

.container {
    width: 100%;
    height: 100%;
    background-color: #6846b8;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 20px #000;
    padding: 20px
}

.container .main-container {
    width: 70%;
    height: 100%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 1px 5px 10px #000;
}

.container .main-container .top-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container .main-container .top-container h1 {
    width: 100%;
    text-align: center;
    padding: 20px;
}

.container .main-container .top-container figure {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container .main-container .top-container img {
    border-radius: 10px;
    width: 50%;
}

.container .main-container .bottom-container {
    margin-left: 40px;
}

.container .main-container .bottom-container ul, ol {
    padding: 20px;
}

.container .main-container .bottom-container p {
    margin-bottom: 40px;  
}