body {
    margin: 0;
    padding: 0;
    height: 1100px;
    background-image: url(/img/team2023/teamblur.png);
    background-position: center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    
}
/* LOGO */
img{
    width: 110px;
    height: 85px;
    position: absolute;
    margin-left: 1.5cm;
}
.nav {
    font-size: larger;
    float: right;
    font-weight: lighter;
}
/* a ειναι η μορφοποιηση του μενου */
.nav a{
    color: rgb(255, 255, 255);
    font-family:Optima, Segoe, Segoe UI, Candara, Calibri, Arial, sans-serif;
    text-decoration: none;
    padding-left: 40px;
    padding-right: 40px;   
    position: relative;
    font-size: 23px;
}
/* DROPDOWN MENU */
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content a {
    color: white;
    font-family:Optima, Segoe, Segoe UI, Candara, Calibri, Arial, sans-serif;
    text-decoration: none;
    display: flex;
    font-size: large;
    padding-top: 5px;
}
.dropdown-content a:hover {background-color: transparent;}
.dropdown:hover .dropdown-content {display: block; background-color:transparent; }
/* τα 2 παρακατω ειναι το hover effect  */
a::before{
    content: "";
    position:absolute;
    background-color: rgba(141, 172, 218, 0.61);
    height: 1px;
    width: 0%;
    left: 0px;
    bottom: -1px;
    transition: 0.3s ease-in-out;
}
a:hover::before{
    content: "";
    position:absolute;
    background-color: rgb(255, 255, 255);
    height: 1px;
    width: 100%;
    left: 0px;
    bottom: -1px;
}


p1{
    color: rgb(255, 255, 255);
    font-size: 10px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}

@keyframes slidein {
    from {
        transform: translateX(-300px);
    }

    to {
        transform: translateX(0);
    }
}

.igemteam{
    animation: slidein;
    animation-duration: 0.5s;
    animation-timing-function:linear;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction:normal;
}

