
 @font-face { 
 	font-family: 'GoodVibes'; 
 	src: url('../fonts/Octosquares.ttf') format('truetype');
 	font-weight: normal; 
 	font-style: normal; }

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    margin-top: 30px;
    padding: 0;
    color: #3c3c60;
    background-color: #f0f0f0;
}
header {
    background-color: #3c3c60;
    color: #f0f0f0;
    padding: 20px 10%;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 2.8rem;
	font-family: 'GoodVibes', sans-serif;
}
main {
    padding: 20px 10%;        }
section {
    margin-bottom: 30px;
    margin: auto auto;
    max-width: 520px ;
    /*border: 1px solid red;*/
}
section h2 {
    color: #3c3c60;
    border-left: 5px solid #c0b9db;
    padding-left: 10px;
    font-size: 1.8rem;
    margin-bottom: 15px;
}
p, li {
    font-size: 1rem;
    margin: 10px 0;
}
a {
    color: #3c3c60;
    text-decoration: none;
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
}
footer a:hover {
    text-decoration: underline;
}

footer a{
    color: #f0f0f0;
    text-decoration: none;
    font-weight: bold;

}

.button-link {
    display: inline-block;
    background-color: #3c3c60;
    color: #f0f0f0;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
}
.button-link:hover {
    background-color: #c0b9db;
}
footer {
    background-color: #3c3c60;
    color: #f0f0f0;
    text-align: center;
    padding: 10px 0;
    margin-top: 30px;
}
footer p {
    margin: 0;
}

.navigation{}

a.navigation {
	padding: 1em 2em;
	color: #f0f0f0;
	font-size: 1.2em;
	font-family: 'GoodVibes', sans-serif;
}

#show-mymenu{
	position: fixed;
	top: 0px;
	margin-right: auto;
	margin-left: auto;
	z-index: 99;
	border: none;
	outline: none;
	
	width: 100%; 
	background-color: #3c3c60;

	line-height: 50px;
	font-weight: bolder;
	text-align: center;
	opacity: 1.0;
}

#on-the-roof {
  position: fixed;
  bottom: -20px;
  right: 5%;

  margin-right: auto;
  margin-left: auto;
  z-index: 99;
  border: none;
  outline: none;
  
  width: 50px; 
  height: 50px; 
  border-radius: 50% 50% 0% 0% ;

  background-color: #1c0c2b;
  color: #684f7f;

  cursor: pointer;
  padding: 0px 0px;
  font-size: 1em;
  line-height: 10px;
  font-weight: bolder;
  opacity: 0;
}

#on-the-roof:hover {
  color: #1c0c2b;
  background-color: #beb8db;
  opacity: 0.9;
}
.fade-out-btn-top {
    animation-name: anim-fade-out-btn-top;
    animation-duration: 0.2s;
    animation-fill-mode: both;
}
@keyframes anim-fade-out-btn-top {
    from {
        opacity: 0.6;
        transform: translateY(-20px);
    }
    to {
        opacity: 0;
        transform: translateY(0px);
    }
}
.fade-in-btn-top {
    animation-name: anim-fade-in-btn-top;
    animation-duration: 0.2s;
    animation-fill-mode: both;
}
@keyframes anim-fade-in-btn-top {
    from {
        opacity: 0;
        transform: translateY(0px);
    }
    to {
        opacity: 0.8;
        transform: translateY(-20px);
    }
}