body {
    background-color: white;
}

/*------------------------------------------------NAVBAR----------------------------------------*/
.nav {
    background-color: rgba(0, 0, 0, 0.856);
    width: 100%;
    align-items: center;
    font-weight: 600;
    z-index: 9;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    justify-content: flex-end; /* Aligns items to the right */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 14px 20px;
    text-align: center;
}
.nav_top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 100px;
    padding: 15px; 
    font-size: 20px; 
    display: flex;
    align-items: center; 
}

.nav_side {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 0;
}

.nav_side a {
    text-decoration: none;
    margin-right: 10px;
    margin-left: 50px;
    color: white;
    font-weight: bold;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 18px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav_side a:hover {
    color: rgb(79, 255, 88);
    transition: all 1s ease;
}
.logo
{
    float:left;
    width: 50%;
}
.logo img
{
    padding: 8px;
    width:30%;
    margin-left:10%;
}


/*------------------------------------------------MAIN----------------------------------------*/

/*------------------------------------------------SIDE----------------------------------------*/
.side 
{
    background-color: rgba(0, 0, 0, 0.966);
    display: flex;
    text-align: center;
    color: white;
    font-family: 'Trebuchet MS', sans-serif;
}
.side .left
{
    width:50%;
    float: left;
}
.side .left img
{
    float: left;
    width:100%;
}
.side .right
{
    background-color: rgba(0, 0, 0, 0.966);
    width:50%;
    float:right;
}
.side .right h2
{
    margin-top: 8%;
    font-size: 250%;
}
.side .right p
{
    margin-left: 15%;
    width: 70%;
    font-size: 147%;
    margin-top: 6%;
}
.side .right .side_btn
{
    margin-top:4%;
}
.side .right .side_btn a
{
    text-decoration: none;
    font-size: large;
    margin:32%;
    padding: 10px 20px;
    font-weight: bold;
    color: white;
    font-family: 'Trebuchet MS', sans-serif;
    text-align: center;
    border: 4px double whitesmoke;
    transition: 0.5s;
}
.side .right .side_btn a:hover
{
    background-color: rgb(79, 255, 88);
    color: black;
    font-weight:bolder;
    border: none;
    border: 4px solid green;
    transition:0.5s;
}

/*------------------------------------------------BTN----------------------------------------*/
.main .main_content .button {
    margin-top: 10%;
    text-align: left;
}
.main .main_content .button a {
    text-decoration: none;
    font-size: large;
    padding: 10px 20px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.856);
    color: white;
    font-family: 'Trebuchet MS', sans-serif; 
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.856);
    transition: 0.5s;
}
.main .main_content .button a:hover {
    background-color: rgba(255, 255, 255, 0.527);
    color: rgb(37, 0, 19);
    border: none;
    border: 4px solid rgb(37, 0, 19);
    transition: 0.5s;
}
