/* External CSS File */

/* General Styles */

.image-container {
    position: relative;
    width: fit-content;
    overflow: hidden;

}

.image {
    
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}

.image-overlay:hover {
    backdrop-filter: blur(20px);
    opacity: 1;
    border-radius: 10%;
}

.image-button {
    background-color: #5782f0 ;
    outline: none;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.25em;
    padding: 0.5em 1em;
    transition: background-color 0.25s;
}

.header {
    background-color: #7b9df1;
    text-align: center;
    padding: 20px;
}

body {
    text-align: center;
    font-family: monospace, monaco;
    margin: 1;
    padding: 1;
    background-color: #7b9df1;
    color: #ffffff;
}

.grad {
    background-image: linear-gradient(#7b9df1,#a9bcec);

}


ul.b {
    list-style-position: inside;
}

.font {

    font-weight: 900;
}


.topnav {
    background-color: #7b9df1; 
    overflow: hidden;
}

.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color:#5782f0;
    color: white;
}


th, td {
    padding: 15px;
    text-align: left;
}

tr:nth-child(even) {background-color: #a9bcec;}

th {
    background-color: #7b9df1;
    color: white;
}

.center {
    margin-left: auto;
    margin-right: auto;
  }


/* Section Styling */
.about {
    padding: 20px;
    margin: 20px;
    background-color: #5782f0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.websites {
    padding: 20px;
    margin: 20px;
    background-color: #7b9df1;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/* CSS Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

h1 {
    color: white;
    animation: fadeIn 2s ease-in; 
    padding: 20px;
    margin: 5px;

}

h2 {
    color: white;
    animation: fadeIn 2s ease-in;
    font-weight: bold;
    font-size: xx-large;
}

.link {
    background-color: #5782f0;
    color: white;
    padding: 5px;
    margin: 5px;
    text-decoration: none;

}

a:hover {
    color: white;
    background-color: #7b9df1; 
    font-size: 18px;
  }


.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(57, 0, 123, 0.479);
    color: white;
    text-align: center;
}

#myBtn {
    display: block; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: rgb(57, 0, 123); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
  }
  
  #myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
  }



  .row {
    display: flex;
  }
  
  .column {
    flex: 33.33%;
    padding: 5px;
  }

  img {
    border-radius: 10%;
  }