/* Radoznalac css */

@import url('https://fonts.googleapis.com/css?family=Bitter:400,400i&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

html {
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: rgba(35,35,35,0.5);
    text-align: center;
    position: relative;
    font-family: 'Bitter', serif;
    overflow: hidden;
}

.circle {
   width: 1200px;
   height: 1200px;
   /*height: 100vh;*/
   position: fixed;
   margin-top: -600px;
   top: 50%;
   right: 63%;
   z-index: -999;

border-radius: 50%;
background-color: #f3f3f3;
box-shadow: 0 0 0 750px #fafafa;
/*border: 750px solid #fafafa;*/
}

.u-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    width: 100%;
    max-width: 650px;
    padding: 0px 20px;
}

.logo {
    width: 100%;
    max-width: 566px;
    margin: 0px auto 70px;
}

.logo img {
    width: 100%;
}

.welcome {
    font-size: 2.25rem;
    line-height: 4rem;
    font-weight: normal;
    font-style: italic;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover, a:focus {
    opacity: 0.8;
    text-decoration: underline;
}


@media screen and (max-width: 600px) {

    .logo {
        width: 80%;
    }

    .welcome {
        font-size: 1.125rem;
        line-height: 3rem;
    }

}
