@font-face {
  font-family: 'SinaNovaReg';
  src: url('fonts/SinaNovaReg-webfont.woff2') format('woff2'),
       url('fonts/SinaNovaReg-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


html{
  height: 100%;
  overflow: hidden;
}

body{
    width: 100%;
    height: 100%;
    background-image: linear-gradient(black 60%,rgb(37, 37, 37), rgb(0, 0, 0));
    background-repeat: no-repeat;
    background-position: center;
}

body p{
    opacity: 1 !important;
}

body img{
    display: inline-block;    
}

div.container{
    overflow: hidden;
    position: absolute;
    bottom: 12vh;
    display:flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    width:100%;
    height: 550px;
}

body a{
    position: absolute;
    top: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    color: black !important;
    border-radius: 8px;
    width: 100%;
    font-size: 1.5rem;
    left: 0px;
    top: 25px;
}

body a:hover{
    text-decoration: none;
}

body a::after{
    content: "";
    width: 32px;
    height: 32px;
    background-image: url(../assets/outside_link_black.png);
    background-size: 100%;
    display: inline-block;
}

div .thinking-balloon{
    position: relative;
    width: 400px;
    aspect-ratio: 4/1;
    top: 10px;
    background-image: url(../assets/thinking_balloon.png);
    background-size: contain;
}


.thinking-balloon .img{
    box-shadow: inset 5px 5px 5px;
}

img.shade{
    display: block;
    z-index: -1;
    margin-top: -4rem;
}
img.white-shade:hover, img.logo:hover + img.white-shade{
    transform: scale(1.2);
    transition: all 0.25s;
}

p{
    position: absolute;
    width: 80vw;
    padding: 0 10vw 25px 10vw;
    bottom: 0px;
    text-align: center;
    color: white;
    font-family:Verdana, Geneva, Tahoma, sans-serif
}

@media screen and (max-width: 400px) {
    div .thinking-balloon{
        width: 95vw;
        aspect-ratio: 4/1;
        top: 10px;
        background-image: url(../assets/thinking_balloon.png);
        background-size: contain;
    }
    body a{
        font-size: 7vw;
    }
}