.background-container {
    margin: 0;
    padding: 0;
}

/* Background container */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('0f12dfd89f7e82f83d683aeaf566bcb6.jpg'); /* Replace with the correct path to your image */
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.container {
    background-color: rgba(255, 255, 255, 0.8); /* Add a semi-transparent white background over the image */
    width: 100%;
    height: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:gilroy;
    color: #fff;
}
html,
body {
    height: 100%;
    width: 100%;
}

#main{
    min-height: 100%;
    width: 100%;
    background-color: #111111;
    padding: 100px 0;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#main>h1{
    font-size: 48px;
    display: flex;
    align-items: center;
}
#main>h1 span{
    margin: 0 15px;
    display: flex;
    align-items: center;
}
#main>h1 span img{
    height: 40px;
    rotate: 90deg;
    transition: 0.3s ease;
}
#main #endec-div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #222;
    border-radius: 10px;
    padding: 8px 8px;
    width: 28%;
    margin: 35px 0;
}
#endec-div h3{
    font-size: 17px;
    display: flex;
    border-radius: 8px;
    font-weight: 500;
    align-items: center;
    /* background-color: red; */
    cursor: pointer;
    padding: 12px 10px;
    transition: 0.2s ease;
}
#enc-btn{
    background-color: #333;
}
#endec-div h3 span{
    display: flex;
    align-items: center;
    margin-right: 10px;
}
#endec-div h3 img{
    height: 20px;
}
#encryption{
    width: 45%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-around;
}

#encryption h5{
    font-size: 16px;
    font-weight: 500;
    color: #6e6e6e;
    margin-bottom: 13px;
}
#encryption textarea{
    width: 100%;
    height: 70px;
    border: 1px solid #343434;
    padding: 10px;
    margin-bottom: 50px;
    border-radius: 8px;
    font-size: 17px;
    outline: none;
    background-color: #1C1C1C;
}
#encryption input{
    width: 100%;
    border: 1px solid #343434;
    padding: 10px;
    margin-bottom: 50px;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    background-color: #1C1C1C;
}

#encryption button{
    display: flex;
    align-items: center;
    color: #6e6e6e;
    background-color: #1C1C1C;

    border: none;
    width: 100%;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    color: #eee;
    font-size: 17px;
}
button span{
    display: flex;
    margin-right: 10px;
}
button img{
    height: 20px;
}

#decryption{
    width: 45%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-around;
    display: none;
}

#decryption h5{
    font-size: 16px;
    font-weight: 500;
    color: #6e6e6e;
    margin-bottom: 13px;
}
#decryption textarea{
    width: 100%;
    height: 70px;
    border: 1px solid #343434;
    padding: 10px;
    margin-bottom: 50px;
    border-radius: 8px;
    font-size: 17px;
    outline: none;
    background-color: #1C1C1C;
}
#decryption input{
    width: 100%;
    border: 1px solid #343434;
    padding: 10px;
    margin-bottom: 50px;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    background-color: #1C1C1C;
}

#decryption button{
    display: flex;
    align-items: center;
    color: #6e6e6e;
    background-color: #1C1C1C;

    border: none;
    width: 100%;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    color: #eee;
    font-size: 17px;
}
button span{
    display: flex;
    margin-right: 10px;
}
button img{
    height: 20px;
}

#result{
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    background-color: #1C1C1C;
    border: 1px solid #343434;
    width: 45%;
    display: none;
    margin-top: 40px;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    color: white; /* Text color */
    text-align: center;
    padding: 10px;
    font-size: 14px; /* Adjust the font size as needed */
}

footer a {
    color: #fff; /* Link color */
    text-decoration: none; /* Remove underline */
    margin: 0 5px; /* Add spacing between links */
}

/* Change link color on hover */
footer a:hover {
    color: #00f; /* Change to the desired hover color */
}
