/* Background settings */
body {
    background-image: url("port.jpg");
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
}

h1 {
    color: white;
    font-size: 80px;
    font-weight: bold;
    text-decoration: underline slateblue;
    text-align: center;
    margin-top: 20px;
}

h3 {
    color: gray;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

div ul {
    text-align: center;
    font-size: 30px;
    padding: 0;
    margin-top: 40px;
}

div li {
    list-style: none;
    font-style: italic;
    display: inline-block;
    margin: 0 30px;
    color: white;
    opacity: 0.8;
    transition: transform 0.3s;
}

div li:hover {
    transform: scale(1.1);
}

#link ul {
    text-align: center;
    font-size: 40px;
    margin-top: 20px;
    padding: 0;
}

#link li {
    display: inline-block;
    margin: 0 20px;
}

#link img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid green;
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

 #link img:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

a {
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: inline-block;
}

a:hover {
    color: gray;
    text-decoration: underline;
}

section {
    color: green;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    display: none; 
    margin: 50px auto;
    padding: 20px;
    border: 2px solid blue;
    max-width: 700px;
    background-color: black;

    
    opacity: 0;
    transform: translateY(30px);

    transition: opacity 3s cubic-bezier(0.42, 0, 0.58, 1) 0.5s, transform 3s cubic-bezier(0.42, 0, 0.58, 1) 0.5s;
}

section:target {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

section a {
    color: green;
    font-style: bold;
}
section h2{
    font-size: 30px;
    color: white;
    font-weight: bold;
    text-decoration: underline green;
}
section Education{
    color: blue;
    background-color: black;
    font-size: 20px;
    text-align: left;
    font-weight: bold;
    display: none; 
    margin: 50px auto;
    padding: 20px;
    border: 2px solid blue;
    max-width: 700px;
    
}
h3{
    color: green;
    text-decoration: none;
    text-align: center;
    font-weight:bold; 
}
section ol{
    color: blue;
    border-color: red;
}
ol img{
    width: 50px;
    height: 50px;
    transition: none;
    transform: none;
    left: 0;
    right: 0;
    border-radius: 50px;
    border: 3px solid blue;

}
ol{
    list-style: none;
    text-align: center;
}
section li{
    transform: none;
    transition: none;
    color: white;
    
    
}
img:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}
img {
    width: 50px;
    height: 50px;
    
    border-radius: 50%;
    border: 2px solid green;
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
section div{
    align-items: center;
}
 ul img{
    align-items: center;
    transition: none;
    transform: none;
    border-radius: 5px solid red;
}

