/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

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

body{
    position: relative;
    background: white url('images/8_Irina Gheorghe_Swimming Pool.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: 16px;
    color: #777777;
}

a{
    color: #333333;
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s ease all;
}
a:hover{
    text-decoration: none;
    opacity: 1;
}
.title{
    font-size: 23px;
    font-weight: 100;
    color: #777777;
    position: absolute;
    top: 50px;
    left: 50px;
}

.menu{
    position: absolute;
    top: 50px;
    right: 50px;
    display: block;
    width: 50%;
    text-align: right;
}

.menu a{
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 2;
    text-decoration: none;
    margin-left: 50px;
}

.page{
    position: relative;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(+200px);
    background-color: white;
    padding: 20px 20px;
    color: #999;
    width: 70%;
    max-width: 1000px;
}
.page p{
    line-height: 1.5;
    margin-bottom: 20px;
}
.page a{
    color: #333;
}

@media only screen and (max-width: 768px) {
    body{
        height: auto;
        min-height: 100vh;
    }
    .page{
        padding: 100px 20px 10px 20px;
        width: 100%;
        transform: none;
        background-color: transparent;
        box-sizing: border-box;
    }

    .page .page-container{
        background-color: white;
        padding: 20px 20px;
    }
}