header{
    top: 0;
    left: 0;
    min-height: 10%;
    width: 100%;
    background-color: aliceblue;
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
header strong{
    top: 0;
    left: 0;
    min-height: 10%;
    width: 100%;
    background-color: aliceblue;
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
}
body{
    font-family: sans-serif;
    background-color: black;
    display: flex;
    flex-direction: column;
    background: url(/images/FireC.jpg) fixed no-repeat ;
    background-color: black;

}
nav {
    display: flex;
    align-self: flex-end;
    
}
.Intro{
    margin-top: 3%;
    margin-left: 0;
    left: 0;
    width: 100%;
    min-height: 480px;
}
.Intro p{
    border: solid 2px;
    font-size:40px;
    margin-top: 465px;
    margin-bottom: 0;
    color: #2b2b2b;
    display: flex;
    margin-bottom: 20px;
    background-color: rgb(255, 255, 255);
    padding: 5px;
    width:fit-content;
    border-radius: 10px;
}
.Files{
    margin-top: 40px;
    padding-top: 20px;
    justify-self: center;
    border-radius: 10px;
    width: 95%;
    background-color: rgba(240, 248, 255, 0.356);
    margin-left: 30px;
    min-height: fit-content;
    padding-bottom: 10px;
}
.Files a{
    color: black;
    text-decoration:dotted;
}
.Files li{
    list-style-image: url(/images/Website.png);
    align-content: center;
    padding: 4px;
    width: fit-content;
    border-radius: 10px;
}
.Files li:hover{
    background-color: azure;
}
.Files a:hover{
    color: black;
    text-decoration:underline;
}
.Files h3{
    color: black;
    padding-left: 7px;
}
header strong a{
    color: #2b2b2b;
    text-decoration: none;
    border-radius: 10px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: fit-content;
    height: fit-content;
    margin-left: 40px;
    transition: background-color 0.5s ease;
}
header a:hover{
    color: #ffffff;
    background-color: #383838;
    text-decoration: dashed;
}