/* Style the links inside the sidenav */
.side-nav-anchor {
    float: right;
    padding: 10px; /* 15px padding */
    width: 150px; /* Set a specific width */
    text-decoration: none; /* Remove underline */
    font-size: 15px; /* Increase font size */
    color: white; /* White text color */
}

.side-nav-anchor-signup {
    float: right;
    padding: 10px; /* 15px padding */
    width: 120px; /* Set a specific width */
    text-decoration: none; /* Remove underline */
    font-size: 15px; /* Increase font size */
    color: black; /* White text color */
}


.side-nav-div {
    position: fixed; /* Position them relative to the browser window */
    right: -180px; /* Position them outside of the screen */
    transition: 0.3s; /* Add transition on hover */
    padding: 15px; /* 15px padding */
    width: 230px; /* Set a specific width */
    text-decoration: none; /* Remove underline */
    font-size: 20px; /* Increase font size */
    color: white; /* White text color */
    border-radius: 0 5px 5px 0; /* Rounded corners on the top right and bottom right side */
    z-index: 9999;
    background-color: #222222;
    top: 120px;
    border-radius: 25px 0px 0px 25px;
    display: table;
}


.side-nav-div-signup{
    position: fixed; /* Position them relative to the browser window */
    right: -130px; /* Position them outside of the screen */
    transition: 0.3s; /* Add transition on hover */
    padding: 15px; /* 15px padding */
    width: 180px; /* Set a specific width */
    text-decoration: none; /* Remove underline */
    font-size: 20px; /* Increase font size */
    color: white; /* White text color */
    border-radius: 0 5px 5px 0; /* Rounded corners on the top right and bottom right side */
    z-index: 9999;
    background-color: #2E9AFE;
    top: 320px;
    border-radius: 25px 0px 0px 25px;
    display: table;
}



.side-nav-div:hover {
    right: 0; /* On mouse-over, make the elements appear as they should */
    color: #000000;
    background-color: #dddddd;
}

.side-nav-div-signup:hover {
    right: 0; /* On mouse-over, make the elements appear as they should */
    color: #000000;
    background-color: #dddddd;
}


.side-nav-span{
    writing-mode: vertical-rl;
    text-orientation: upright;
    float: left;
    font-weight: bold;
}


.side-nav-anchor:hover {
    color: #000000;
}


.side-nav-list{
    position: relative;
    top: 5px;
}

/* The about link: 20px from the top with a green background */
#about1 {
    background-color: #4CAF50;
}


#blog1 {
    background-color: #2196F3; /* Blue */
}

#projects1 {
    background-color: #f44336; /* Red */
}

#contact1 {
    background-color: #DF0174; /* Light Black */
}

#signup{
    text-align: center;
}

