body {
    margin: 0;
    background-color: rgb(0, 0, 29);
    font-family: Courier;
    color: white;
    background-image: url("assets/PassionFruitsWeb.png");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-position-y: 0%;
    line-height: 1.2;
    }
.code {
    font-size: 15px;
    font-weight: bold;
    background-color: #282c34;
    padding-left: 3px;
    padding-right: 3px;
    border-radius: 3px;
    font-family: Courier;
}
pre.code {
    padding: 7px;
    background-color: rgb(211, 211, 211);
}
.topmenu {
    top: 0;
    font-family: Courier;
    font-weight: bold;
    font-size: 20px;
    width: 100%;
    height: 20px;
    text-align: center;
}
.topmenu > a, .topmenu > div {
    background-color: white;
    padding: 20px 0 20px 0;
    width: 20%;
    height: 100%;
    color: black;
    text-decoration-line: none;
    float: left;
}
.topmenu > a:hover {
    background-color: rgb(0, 0, 80);
    color: white;
    transition-duration: 0.4s;
}
.topmenu > .logo {
    width: 60px;
}
.logo > div > img {
    height: 40px;
    width: auto;
    position: absolute;
    left: 10px;
    top: 10px;
}
.intro {
    top: 130px;
    left: 10%;
    background-color: rgb(0, 0, 80);
    position: absolute;
    padding: 10px;
    width: 40%;
    color: white;
    transition-duration: 0.5s;
}
.intro:hover {
    left: 15%;
    background-color: rgb(0, 0, 140);
}
.products {
    top: 400px;
    right: 10%;
    background-color: rgb(0, 0, 80);
    text-align: right;
    position: absolute;
    padding: 10px;
    width: 40%;
    color: white;
    transition-duration: 0.5s;
}
.products:hover {
    right: 15%;
    background-color: rgb(0, 0, 140);
}
.container {
    top: 110vh;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 -50px 0 rgb(0, 0, 80);
    position: absolute;
    width: 100%;
    height: 2500px;
    color: black;
    padding-top: 40px;
    background-image: radial-gradient(#000 6%, transparent 1%), radial-gradient(#000 6%, transparent 1%);
    background-size: 80px 80px;
    background-position: 0 20px, 40px 60px;
    background-repeat: repeat;
}
.container > h1 {
    margin-left: 8%;
    text-decoration: underline;
    text-decoration-color: yellow;
}
.infoboxes {
    display: flex;
    flex-wrap: wrap;
    height: 500px;
    margin-left: 4%;
    margin-right: 4%;
}
.infobox {
    text-decoration: none;
    color: white;   
    position: relative;
    height: 23vw;
    left: 0%;
    top: 0%;
    background-color: rgb(0, 0, 80);
    flex: 1 0 20%;
    margin: 4%;
    padding: 10px;
    box-shadow: -5px 5px 0 yellow;
    transition-duration: 0.5s;
}
.infobox:hover {
    background-color: rgb(0, 0, 140);
    left: 2%;
    top: -2%;
}
.recent:hover {
    display: none;
}
.main {
    width: 60%;
    margin-left: 18%;
    margin-top: 80px;
    text-align: center;
    background-color: rgb(0, 0, 80);
    padding: 20px;
}
.title {
    text-decoration: underline;
    font-weight: bold;
}
.question {
    color: rgb(255, 89, 89);
}
.answer {
    color: rgb(151, 255, 151);
    line-height: 25px;
}
.subtext {
    font-size: small;
}
.leftist {
    text-align: left;
}
.links {
    color: white;
    text-decoration: underline;
    text-decoration-color: yellow;
}
.links:hover {
    color: yellow;
}
@keyframes fly-in-main {
    from {opacity: 0; left: -5%; margin-top: 60px}
    to {opacity: 1; left: 0%; margin-top: 80px}
}
@keyframes fly-in-intro {
    from {left: -100%;}
    70% {left: 12%}
    to {left: 10%;}
}
@keyframes fly-in-products {
    from {right: -100%;}
    70% {right: 12%}
    to {right: 10%;}
}
