html {
    overflow-x: hidden;
}
body {
    margin: 0;
    background-color: darkgray;
}
.body{
    margin: 0;
}
a {
    transition: 0.5s;
    text-decoration: none;
    color: black;
}
a:hover{
    transition: 0.5s;
    color: crimson;
}
.Fdiv{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.Fdiv > button{
    font-size: 40px;
    margin-bottom: 20px;
    border-radius: 1rem;
    border: none;
    padding: 9px;
    transition: 0.7s;
}
.Fdiv > button:hover{
    transform: scale(1.2);
    transition: 0.7s;
}
.Fdiv > button:nth-child(2):hover{
    color: blue;
    transition: 0.4s;
}


.LForestBody {
    background-color: rgb(4, 59, 4);
    padding: 0;
}
.Hr{
    background-color: cadetblue;
    height: 79%;
}
hr {
    margin: 0;
    height: 4px;
    background-color: black;
    border: none;
    width: initial;
}
#sosuke {
    position: absolute;
    height: 150px;
    width: 6%;
    background-color: purple;
    bottom: 10%;
    left: 5%;
}
#haruto {
    position: absolute;
    height: 150px;
    width: 6%;
    background-color: yellow;
    bottom: 5%;
    /* left: 90%; */
}