* {
    box-sizing: border-box;
}

@font-face{
    font-family: "WebFont";
    src: url(Fonts/000webfont.ttf);
}

html{
    background-image:url(Img/OceanBG.JPG);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding-left: 25%;
    font-family: "WebFont";
    font-size: 15px;
}

body{
    opacity: 1;
    transition: opacity 1s ease-in-out;
    margin: 0%;
    display: flex;
    padding: 10px;
    width: 720px;
}

body.preload{
    opacity: 0;
    transition: none;
}

.Nav-Box, h2{
    display: block;
    background-color: navy;
    color: white;
    margin: 0%;
}

.Nav-Box, a{
    background-color: aliceblue;
    text-align: center;
    width: 200px;
    display: block;
}

a{
    font-size: large;
}

a:hover{
    background-repeat: no-repeat;
    background-position: 30% center;
    background-image: url("Img/finger_point_MarioParty.png");
}

.Box{
    background-color: aliceblue;
    border: 2px;
    border-style: dashed;
    border-color: navy;
    text-align: center;
    width: 399px;
    padding: 0px 10px 0px 10px;
}

.Container{
    border: 2px;
    border-style: dashed;
    border-color: navy;
    display: flex;
    flex-flow: row;
    width: 600px;
    height: 600px;
    background-color: rgba(255, 255, 255, 0.5);
}

.Main{
    width: 450px;
}

.BeachHouse{
    padding-bottom: 20px;
}

.FruitDivider{
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

.ImgBoard{
    position: relative;
    top: 5px;
    margin-bottom: 20px;
}

.Footer{
    text-align: center;
    color: white;
    background-image: url(Img/City.webp);
    background-position: center;
    border: 1px;
    border-color: navy;
    border-style: dashed;
}