@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Roboto:wght@300;900&display=swap');

/*
font-family: 'Lobster', cursive;
font-family: 'Roboto', sans-serif;  // 300;500;900
*/

* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3 {
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'Lobster', cursive;
    color: #FFF;
    font-size: 48px;
    margin-bottom: 6px;
}
h1.wf {
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
}
h2 {
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
h2.wf {
    color: #000;
    letter-spacing: 0px;
    font-family: 'Roboto', sans-serif;
}
p {
    color: #FFF;
    font-size: 18px;
    text-align: center;
    line-height: 22px;
}
html {
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    height: 100%;
}
.container {
    position: fixed;
    background: rgb(230,103,103);
    background: linear-gradient(20deg, rgba(230,103,103,1) 0%, rgba(48,57,82,1) 25%);
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: 0;
    left: 0;
    z-index: 100;
}
img {
    margin-bottom: 8px;
}

.email {
    display: block;
    margin-top: 50px;
    padding: 14px 20px;
    background-color: #e66767;
    border-radius: 30px;
    color: #FFF;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.email:hover {
    transform: scale(1.1);
    background-color: #f37777;
    -webkit-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.2); 
    box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.2);
    transition: all 0.1s ease-in-out;
}
.email.wf {
    border-radius: 0;
    background-color: #999;
}
.email > img {
    height: 12px;
    line-height: 14px;
    vertical-align: middle;
    margin-bottom: 0;
    margin-left: 6px;
    transition: all 0.3s ease-in-out;
}
.email:hover > img {
    margin-left: 16px;
    transition: all 0.1s ease-in-out;
}

.phone {
    margin-top: 14px;
    font-size: 14px;
    color: #FFF;
    opacity: 0.5;
    cursor: default;
}
.phone a {
    color: #FFF;
    opacity: 0.5;
    text-decoration: none;
}
.phone.wf {
    color: #333;
    opacity: 1;
}
.phone.wf a {
    color: #546de5;
    opacity: 1;
    text-decoration: underline;
}

.wireframeStart {
    display: none;
}
.wireframe {
    position: fixed;
    height: 100%;
    width: 100%;
    background: url('wf.jpg') no-repeat;
    background-size: cover;
    z-index: 200;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.dragBorder {
    border: solid 3px #546de5;
    border-radius: 4px;
    transition: all 0.1s ease-in-out;
}

a {
    color: #FFF;
    text-decoration: none;
}