body {
    background-color: #fffbfb;
    height: 100%;
    margin: 0;
}

.content {
    background-color: #fffbfb;
    width: 70%;
    height: 100%;
    float: right;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.side-bar {
    background-image: url('../img/sky.png');
    background-size: cover;
    width: 30%;
    height: 100%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    position: fixed;
}

.side-bar .label {
    text-align: center;
}

.side-bar h1 {
    font-weight: 700;
    color: #fffbfb;
    margin: 1pt;
    font-size: 30pt;
}

.content .label {
    text-align: center;
}

.content h1 {
    font-weight: 800;
    font-size: 30pt;
    color: var(--purpule-dark-1);
    opacity: 92%;
    margin: 8pt;
}

a {
    color: #2d153f;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    color: #2d153f;
}