html {
    box-sizing: border-box;
    background: #00bb5d;
    font-family: cursive;
    font-size: 20px;
    font-weight: 200;
}

body {
    margin: 0;
}

*, *:before, *:after {
    box-sizing: inherit;
}

h1 {
    margin-top: 0;
    text-align: center;
    text-shadow: 2px 2px #00bb5d;
}

.site-wrap {
    max-width: 700px;
    height: 2744px;
    margin: 50px auto;
    background: rgb(153, 247, 240);
    padding: 30px;
    text-align: justify;
    border-radius: 10px;
}

.align-left {
    float: left;
    margin-right: 20px;
}

.align-right {
    float: right;
    margin-left: 20px;
}

.slide-in {
    opacity: 0;
    transition: all .5s;
}

.align-left.slide-in {
    transform: translateX(30%) scale(0.95);
}

.align-right.slide-in {
    transform: translateX(-30%) scale(0.95);
}

.slide-in.active {
    opacity: 1;
    transform: translateX(0%) scale(1);
}