
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #F4EDD3;
}
h1 {
    margin: 0;

}
.nav-bar    {
    height: 50px;
    background-color: #3c4649;
}
.header {
    position: relative;
    top: 0px;
    width: 100%;
    height: 300px;
    background-color: #000000;

    background-image: linear-gradient(#3c4649 70%, #4C585B 100%);
}
.header-text {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 500%;
    text-align: center;
    color: #7E99A3;

    line-height: 200px;
}
.email-text{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 300%;
    text-align: center;
    color: white;

    line-height: 50px;
}



.about-me-div {

    border-radius: 10px;
    padding: 1%;

}
.cyber-skills-container,.about-me-container {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    width: 75%;
    height: auto;
    margin: 10px auto;
    padding: 10px;
    border-radius: 10px;
    background-color: #c9dbe2;
}
.cyber-skills-container:hover,.about-me-container:hover {
    transition-duration: 1s;
    box-shadow: #3c4649 10px 10px 0px;
}
.cyber-skills-container:not(hover),.about-me-container:not(hover) {
    transition-duration: 1s;
    box-shadow: none;
}
img.about-me {
    position: relative;
    width: 25%;
    height: auto;
    top: 0;
    border-radius: 10px;

}
.about-me-header {
    position: relative;
    width: 100%;
    height: 100%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
p.about-me {
    word-wrap: break-word;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


div.cyber-skills    {
    position: relative;
    width: 50%;
    height: auto;
    padding: 10px;
    margin: 10px auto;
    background-color: #c9dbe2;
    top: 10px;
}

h1.cyber-skills {
    word-wrap: break-word;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.img-container {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}
.img-text   {
    border-radius: 10px;
    border: 1.5px solid #000000;
    padding: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 75%;

}
.img {
    width: 100%;
    border-radius:10px;
}
.img-container:hover .img-text {
    color: black;
    border-color: black;
    transition-duration: 1s;
    transform: translate(0%,0%);
}
.img-container:not(hover) .img-text {
    transition-duration: 1s;
    transform: translate(0,-250%);
    color: rgba(38,114,55,0);
    border-color: rgba(38,114,55,0);
}