main {
    margin: 0 70px;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-box {
    flex-basis: 50%;
}

.right-box {
    flex-basis: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.left-box h1 {
    font-size: 3em;
    transform: scaleY(1.2);
    margin-bottom: 10px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.left-box p {
    line-height: 1.5;
    margin-bottom: 15px;
}

.container .left-box a {
    text-decoration: none;
    color: white;
    background-color: blueviolet;
    border-radius: 12px;
    padding: 7px 10px;
}

.container .left-box a:hover {
    background-color: rgba(137, 43, 226, 0.9);
}

.container .left-box .social-icon {
    margin-top: 1em;
    margin-left: 0.2em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    cursor: default;
}

.container .left-box .social-icon a {
    margin: 0 3px;
    margin-bottom: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 7px;
    transition: .5s;
    background-color: transparent;
    box-shadow: 0 0 4px blueviolet;
}

.container .left-box .social-icon a:first-child {
    margin: 0 3px 0 0;
}

.container .left-box .social-icon a i {
    color: black;
    transition: .5s;
}
.container .left-box .social-icon a:hover i {
    color: white;
}

.container .left-box .social-icon a:hover {
    background-color: blueviolet;
    color: white;
    border-radius: 50%;
}

.right-box img {
    width: 80%;
}