* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    border: none;
    color: #000;
}

body {
}

.main-title {
    position: absolute;
    top: 50px;
    z-index: 2;
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #000;
}

.main-wrapper {
    background: url("../imgs/bg2.jpg") no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.wrapper-1{
    background-color: white;
    width: 15%;
    box-shadow: 0 0 1px 6px rgba(255, 255, 255, 0.6);
    padding: 10px;
    cursor: pointer;
    min-width: 250px;
    max-width: 18%;
    margin-top: -100px;
    position: relative;
}
.wrapper-2{
    background-color: white;
    width: 15%;
    box-shadow: 0 0 1px 6px rgba(255, 255, 255, 0.6);
    padding: 10px;
    cursor: pointer;
    min-width: 250px;
    max-width: 18%;
    margin-top: -100px;
    position: relative;
}

@keyframes scale-anima {
    from {
        transform: scale(1,1);
    }
    to {
        transform: scale(1.06,1.06);
    }
}

.wrapper-1:hover{
    animation: scale-anima;
    animation-duration: 500ms;
    animation-fill-mode: forwards;
}

.wrapper-2:hover{
    animation: scale-anima;
    animation-duration: 500ms;
    animation-fill-mode: forwards;
}

@keyframes wrapper-hide-anim-enter{
    from{
        transform: rotateY(90deg);
    }
    to{
        transform: rotateY(0deg);
    }
}

@keyframes wrapper-hide-anim-exit {
    from{
        transform: rotateY(0deg);
    }
    to{
        transform: rotateY(90deg);
    }
}

.wrapper-hide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: wrapper-hide-anim-enter;
    animation-duration: 500ms;
    animation-fill-mode: forwards;
}
.wrapper-hide.hide{
    animation: wrapper-hide-anim-exit;
    animation-duration: 300ms;
    animation-fill-mode: forwards;
}
.wrapper-hide p{
    font-size: 24px;
    margin-top: 20px;
}

.title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title-wrapper .logo {
    width: 60px;
    height: 60px;
}

.title-wrapper .title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

.list {
    list-style: none;
    padding-bottom: 30px;
}

.list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #69D17A;
    border: 2px solid #69D17A;
    margin-top: 30px;
}

.list-item .block {
    width: 50px;
    height: 40px;
    background-color: white;
    line-height: 40px;
    text-align: center;
    color: #69D17A;
}

.list-item .content {
    margin-left: 10px;
    color: white;
}

.footer {
    position: absolute;
    bottom: 20px;
    z-index: 10;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.footer div {
    font-size: 16px;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
