body{
    background-color: rgb(0, 0, 0);
    color: white;
    font-family: Andale Mono, monospace;
}
* {
    scrollbar-color: rgb(255, 123, 0) rgb(37, 33, 30);
}

@font-face {
    font-family: 'League Gothic'; /* Name your font family */
    src: url('LeagueGothic.ttf'); /* Locate the .ttf file within your directory*/
}

.Logo{
    display:flex;
    width: 800px;
    height: 3%;
    align-items: center;
    /*justify-content: center;*/
    margin: auto;
    margin-top: 100px;
    top: 10px;

}
.LogoImg{
    animation: rotate;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-play-state: running;
    align-self: center;
    width: 70.00%;
    height: 150px;
}

.name{
    display: inline;
    font-size: 100px;
    text-align: left;
    /*margin: auto;*/
    font-family: 'League Gothic';
    text-shadow: 3px 3px 0px #ff6600;
}

.descHolder{
    margin: auto;
    margin-top: 50px;
    width: 900px;
}
.desc{
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 40px;
    text-align: justify;
}

.contact-data-stuff{
    display: inline;
    margin-top: 50px;
    width: 900px;
    margin-bottom: 15px;
    font-size: 25px;
    text-align: left;
}

.OurProject{
    display: block;
    margin: auto;
    margin-top: 100px;
    text-align: center;
    font-size: 30px;
}

.projectsHolder{
    display:grid;
    /*grid-template-columns: 1fr 1fr 1fr;*/
    grid-template-columns: 1fr;
    gap: 10px;
    grid-auto-rows: auto;
    /*padding: 3vw;*/
    width: 800px;
    margin: auto;
    margin-top: 30px;
}

.projectdisplay {
    width: 100%;
    border: 3px solid white;
    box-sizing: border-box;
    color: #efefef;
    text-shadow: 2px 2px #000;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;

    transition: 0.3s;
}

.projectdisplay-url {

}

.projectdisplay:hover {
    border: 3px solid chocolate;
    .projimg img {
    scale: 105%;
    cursor: pointer;
    }
}

.projname {
    background: black;
    display: inline-block;
    margin-right: 40px;
    padding: 0px 7px 3px 7px;
    position: absolute;
    z-index: 10;
    bottom: 7px;
    left: 7px;
}

.divider {
    width: 100px;
    height: 100px;
    background-color: black;
}

.top-panel {
    position: fixed;
    top: 0;
    left: 0; 
    width: 100%;
    height: 60px;
    background-color: chocolate;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
}

.top-panel-contentHandle
{
    align-self: right;
}

.projdesc {
    width: 300px;
    height: auto;
    display: block;
    /*padding: 0px 7px 0px 100px;*/
    position: absolute;
    /*background: linear-gradient(to left, black, transparent);*/
    
    z-index: 10;
    
    top: 0px;
    right: 7px;
    
    text-align: right;
}

.projdesc-grad {
    width: 300px;
    height: 100%;
    display: block;
    padding: 0px 7px 0px 100px;
    position: absolute;
    background: linear-gradient(to left, black, transparent);
    
    z-index: 10;
    
    bottom: 0px;
    right: 0px;
    
    text-align: right;
}

.projimg img {
    width: 100%;
    height: auto;
    margin: 0;
    display: block;
    scale: 100%;
    transition: 0.3s;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}