body {
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

/*[HOME INDEX]*/

.home-index {
    height: 100vh;
    background-image: url('../Images/---gif.gif');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-index{
    position: relative;
    display: flex;
    height: 100%;
    left: 250px;
    width: calc(100% - 250px);
    transition: var(--tran-05);
}

.sidebar.close ~ .home-index{
    left: 88px;
    width: calc(100% - 88px);
}

.index-text{
    color: #285565;
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translateY(-50%);
    z-index: 2;
}

.index-text small{
    font-size: 20px;
}

.index-text h1{
    font-size: 60px;
    margin: 10px 0 30px;
    line-height: 80px;
}

.button-switch{
    border: 1px solid #285565;
    border-radius: 20px;
    width: 114.25px;
    height: 45px;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.button-switch button{
    display: none;
    transition: var(--tran-05);
}

.button-switch:hover {
    background-color: #285565;
    color: #ffffff;
}

.button-switch span h3{
    margin-top: 7px;
    margin-left: 19px;
}

/*[CONTENT]*/

.content-section {
    height: 100vh;
    background: linear-gradient(to bottom right, #76c8e9, #00212b);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

body.dark .content-section {
    background: linear-gradient(to bottom right, #346a80, #00151b);
}

.box {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    text-align: center;
}

.box h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.box p {
    font-size: 16px;
    margin-bottom: 20px;
}

.box .buttons {
    display: flex;
    justify-content: space-around;
}

.box button {
    background-color: #285565;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.box button:hover {
    background-color: #346a80;
}
