@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700&display=swap');

/* reset */
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;
}
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;
}


/* Nectar styling */

body{
    font-family: 'Roboto', sans-serif;
    color: #0072BC;
}

header{
    height: 110px;
    background-color: #fff;
    text-align: center;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.logo img{
    width: 211px;
}

.container{
    background-image: url("images/background.jpg");
    height: 100vh;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.flower-position{
    display: flex;
    
}
.flower-position img{
    align-self: flex-end;
    transform: translateY(245px);
}

.information{
    align-items: center;
    display: flex;
    flex-direction: column;
    font-weight: 700;
    justify-content: center;
    margin: auto;
    padding-top: 190px;
    text-align: center;
}
.information h1{
    font-size: 106px;
}
.social-links{
    display: flex;
    justify-content: space-evenly;
    width: 500px;
    font-size: 28px;
    padding-top: 70px;
}
.social-links a{
    color: #0072BC;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.social-links a p{
    padding-top: 2rem;
}



@media screen and (max-width:768px) {
    .container{
        background-image: url("images/background-tablet-2.jpg");
    }
    .information{
        padding-top: 200px;
        width: 500px;
        line-height: 80px;
    }
    .social-links{
        padding-top: 45px;
        font-size: 24px;
    }
    .information h1{
        font-size: 68px;
    }
    .social-links a p{
        padding-top: 0.8rem;
    }
}

@media screen and (max-width:425px) {
    .container{
        background-image: url("images/background-phone.jpg");
    }
    .information{
        padding-top: 200px;
        width: 330px;
        line-height: 60px;
    }
    .information h1{
        font-size: 48px;
    }
    .social-links{
        flex-direction: column;
        width: 100%;
        font-size: 20px;
        padding-top: 45px;
    }
    .social-links a{
        padding-top: 1.3rem;
    }
    .social-links a:first-child{
        padding-top: 0px;
    }
    .social-links a p{
        padding-top: 0.3rem;
    }
}