
@font-face {
    font-family:"GT America";
    src:url("../font/GT-America-Standard-Regular.woff2") format("woff2"),
    url("../font/GT-America-Standard-Regular.woff") format("woff"),
    url("../font/GT-America-Standard-Regular.otf") format("opentype");
    font-style:normal;
    font-weight:normal;
}

body,html{
    font-family:"GT America",sans-serif;
    padding:0;
    margin:0;
    font-size: 1.1rem;
    height: 100%;
    display: block;
}

.modal {
    width:84%;
    max-width: 567px;
    display: block;
    position: fixed;
    padding:0;
    border-radius: 15px;
    background-color: #EBEBEB;
    top:50%;
    left: 50vw;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    overflow: hidden;
    -webkit-box-shadow: 10px 10px 40px 10px rgba(180,197,255,1);
    -moz-box-shadow: 10px 10px 40px 10px rgba(180,197,255,1);
    box-shadow: 10px 10px 40px 10px rgba(180,197,255,1);
    transition: transform 0.6s ease-in;
}
.modal.rotate{
    transform:rotateY(-180deg) translate(50%,-50%)
}
.modal:before {
    content: " ";
    position: relative;
    display: block;
    width: 100%;
    height: 30px;
    background: #fff;
    z-index: 2;
}
.modal:after {
    content: " ";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #EBEBEB;
    z-index: 1;
    top: 0;
    left: 0;
}
.hiring{
    position: absolute;
    display: block;
    opacity: 0;
    width: 100%;
    height: 100%;
    background: #001DFF;
    color:#fff;
    top:0;
    left:0;
    transform: rotateY(-180deg);
    z-index: -1;
    transition-property: all;
    transition-duration: 0.05s;
    transition-timing-function: linear;
    transition-delay: 0.3s;
}

.modal.rotate .hiring{
    z-index: 3;
    opacity: 1;
}
.buttons,
.context{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin:15px 8%;
    align-items: center;
    z-index: 2;
    position: relative;
}

.logo{
    border-radius: 50%;
    background: #000;
    width: 15%;
}
.logo img{
    display: block;
    width: 90%;
    margin:5%;
    height:auto;
}
.message{
    width: 85%;
    margin:0;
}
.hiring .message{
    padding:15px 8%;
}
.hiring .message p{
    font-size: 2.2rem;
    margin:0 0 0.5em 30px;
}
.message p{
    margin:0 0 0 1.5em ;
}

.buttons{
    justify-content: flex-end;
}
.buttons a {
    margin: 0 5px;
    padding: 0.1em 0.5em 0.2em;
    line-height: 1em;
    background-color: #fff;
    border:0;
    border-radius: 1em;
    outline: none !important;
    cursor: pointer;
    color:#000;
    text-decoration: none;
}
.buttons a:hover{
    color:#fff;
    background: #001DFF;
}
.dev{
    position: fixed;
    bottom:0;
    right: 0;
    color:#000;
    cursor:pointer;
}
.dev:hover{
    color:#001DFF;
}
@media (max-width: 768px) {
    body{
        font-size: 1.5rem;
    }
    .context{
        display: block;
    }

    .logo{
        width: 90px;
        height: 90px;
        padding:9px;
    }
    .logo img{
        margin:0;
        width: 100%;
    }
    .message{
        width: 100%;
    }
    .message p{
        margin:0.8em 0 1.3em 0;
    }
    .hiring .message{
        width:82%;
    }
    .hiring .message p{
        margin:0.8em 0 1em 0;
    }
    .buttons{
        margin:1.3em 0;
        justify-content: start;
    }
    .buttons a {
        margin:5px 10px 5px 0;
        font-size: 11vw;
    }
}
