@font-face { font-family: Nunito; src: url('files/Nunito-Regular.ttf'); }
@font-face { font-family: NunitoBlack; src: url('files/Nunito-Bold.ttf'); }

body {
    font-family: 'Nunito', sans-serif;
    font-size: 1em;
    color: white;
    background-color: #088BFF;
	padding: 1em;
}
p {
    font-size: 1.5em;
    text-align: center;
}
h1 {
    font-family: 'NunitoBlack', sans-serif;
	font-weight: bold;
    font-size: 4em;
    text-align: center;
}
a {
    text-decoration: none;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
  
.item {
    flex-grow: 1;
    width: 480px;
}
  
.item + .item {
    margin-top: 1em;
}

#homebutton {
    padding: 1em;
    font-weight: bold;
    background-color: white;
    text-align: center;
    color: black;
    border-radius: 2em;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

#homebutton:hover {
    transform: scale(1.1);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}