:root {
    --bg_col: #181818;
    --sec_bg_col: #323746;
    --acc_color: #D72323;
    --text_color: #F5EDED;
}

@font-face {
    font-family: "Aileron";
    src: url("../fonts/Aileron-Regular.otf");
    font-weight: normal;
}

@font-face {
    font-family: "Aileron";
    src: url("../fonts/Aileron-Bold.otf");
    font-weight: bold;
}

/* @font-face {
    font-family: "Aileron";
    src: url("../fonts/Aileron-Bold.otf");
    font-weight: bolder;
} */

@font-face {
    font-family: "Neuro";
    src: url("../fonts/neuropolitical\ rg.otf");
}

/* main page settings: header, body, etc. */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}



body {
    /*background: #141414 */
    background: var(--bg_col);
    font-family: 'Aileron', sans-serif;
    font-weight: normal;
    font-style: normal;
}

a {
    text-decoration: none;
    color: var(--acc_color);
    font-weight: bold;
}

p {
    color: var(--text_color);
}

main {
    width: 95%;
    margin: auto;
}

h1 {
    font-family: 'Neuro', sans-serif;
    font-size: 96px;
    font-weight: bolder;
    color:var(--acc_color); 
    text-align: left;
}

h2 {
    font-size: 50px;
    font-weight: bolder;
    color:var(--acc_color); 
    text-align: left;
}

h1, h2, h3, h4, h5, p{
    text-shadow: 0px 0px 25px rgba(0,0,0,0.5);
}

header {
    margin-top: 0px;
    display: flex;
    max-height: 10vh;
    width: auto;
    align-items: center;
    background: var(--bg_col);
    border-bottom: var(--acc_color);
    position:sticky;
    top: 0px;
    z-index: 5;
}

footer p {
    position: relative;
    color: var(--acc_color);
    margin: 50px;
    text-align: center;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.logo-container, .nav-links {
    display: flex;
}

.logo-container {
    font-size: 4vh;
    font-weight: 800;
    max-width: 250px;
    max-height: auto;
    flex: 1;
    align-items: center;
    color:#ffffff; 
}

.logo-container img {
    margin: 5%;
    max-height: 8vh;
}

nav {
    flex: 2;
}

.nav-links {
    justify-content: flex-end;
    list-style: none;  
}

.nav-link, .nav-link-dropdown  {
    display: inline-block;
    background: none;
    border: none;
    color: var(--text_color);
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    margin: 40px;
    animation-fill-mode: backwards;
    transition: 0.25s;
}

.dropdown {
    display: inline-block;
    position: relative;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    background: #070707;
    width: 100%;
    overflow: auto;
    box-shadow: 0px 0px 15px 10px rgba(0,0,0,0.25);
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }
  .dropdown-content a {
    text-align: center;
    font-weight: 800;
    display: block;
    color: #ffffff;
    padding: 25px;
    text-decoration: none;
  }
  .dropdown-content a:hover {
    color: #FFFFFF;
    background-color: #e43333;
  }

.nav-link-dropdown:hover{
    cursor: pointer;
}

.nav-link:hover, .nav-link-dropdown:hover  {
    color: #e43333;
    background:transparent;
    border-color: #e43333;
}

/* end of main page settings */

/* Home */

.introduction {
    width: 100%;
    height: auto;
    background: transparent;
}

.introduction h1, p, hr{
    margin-left: 8%;
}

.introduction h1 {
    margin-top: 12.5%;
    text-align: left;
    animation: drop 1s ease;
}

.alexfloat {
    float: right;
}

.introduction hr {
    border-style: solid;
    border-width: 3px;
    width: 25%;
    color: var(--acc_color);
    animation: drop 1s ease;
    border-radius: 3px;
    height: 3px;
}

.introduction p {
    color: rgb(255, 255, 255);
    font-size: 28px;
    text-align: left;
    animation: drop 1s;
    animation-delay: 0.1s;
    animation-fill-mode: backwards;
    margin-top: 20px;
    width: 800px;
}

.spacer {
    margin-top: 15%;
}

.intro-text {
    justify-content: center;
    width: auto;
    height: 100%;
    align-items: center;
}

.cta {
    text-align: left;
    /* padding-bottom: 18%; */
    margin-left: 8%;
}

.cta button {
    cursor: pointer;
    font-family: 'Aileron', sans-serif;
}

.ctaread {
    margin: 35px;
    width: 150px;
    height: 50px;
    font-size: 15px;
    flex: 1;
    color: var(--acc_color);
    background:transparent;
    border: 2px solid var(--acc_color);
    border-radius: 5px;
    animation: drop 1s;
    animation-delay: 0.5s;
    animation-fill-mode: backwards;
    transition: 0.2s;
    text-align: center;
    text-justify:auto;
}

.ctaread:hover {
    color: #111111;
    background:var(--acc_color);
    border-color: transparent;
    box-shadow: 0px 0px 25px 0px rgba(255, 14, 14, 0.5);
}

.ctaselect {
    /* margin: 35px; */
    width: 150px;
    height: 50px;
    font-size: 15px;
    flex: 1;
    color: var(--text_color);
    background:var(--acc_color);
    border-color: transparent;
    border-style: solid;
    border-radius: 5px;
    animation: drop 1s;
    animation-delay: 0.25s;
    animation-fill-mode: backwards;
    transition: 0.2s;
}

.ctaselect:hover{
    color: var(--acc_color);
    background:transparent;
    border-color: var(--acc_color);
    box-shadow: 0px 0px 25px 0px rgba(255, 14, 14, 0.5);
}

.cover {
flex: 1;
}

.cover img {
    height: auto;
    max-width: 50vh;
    animation: drop 2s ease 2s;
    animation-fill-mode: backwards;
    filter: drop-shadow(0px 15px 10px black);
}

.skytideabout {
    background: #e9e9e9;
    margin-top: 15%;
}

.skytideabout h1 {
    padding-top: 100px;
    text-align: left;
}

.skytideabout h2 {
    margin-top: 100px;
    text-align: center;
    font-size: 50px;
    color:#e43333;
}

.skytideabout p {
    background-color: #111111;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    text-align: left;
    margin-top: 5px;
}

.employeeimg {
    display: flex;
}

.employeeimg img {
    max-height: 500px;
}

.leftfullimage{
    float: left;
}

.rightfullimage {
    float: right;
}


/* end of home page */

/* Skills Page */

.h1center {
    text-align: center;
    font-size: 72px;
    padding-bottom: 2%;
    padding-top: 5%;
}

.skills {
    background: var(--sec_bg_col);
    animation: drop 1s;
}

.skills p {
    text-align: center;
    width: 60%;
    margin: auto;
    padding-top: 2%;
    font-weight: bold;
    font-size: 32px;
}

.skillscontainer {
    display:block;
    animation: drop 1s;
    animation-delay: 0.5s;
    animation-fill-mode: backwards;
}

.skillcategory {
   display: flex;
   justify-content: center;
}

.skillitem {
    width: 20%;
    /* padding-left: 10%; */
    text-align: center;
    /* padding-bottom: 5%; */
}

.skillimg {
    margin: auto;
    height: 50%;
    padding: 15%;
    object-fit: contain;
}

.skillitem h2 {
    font-weight: bold;
    color: var(--text_color);
    font-size: 24px;
    text-align: center;
}

.skillitem .skilllevel {
    padding-top: 5%;
}

.skillitem p {
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    width: 100%;
}

.portfoliocontainer {
    padding-bottom: 2%;
}

.portfoliocontainer .h1center {
    padding-top: 5%;
}

/* SLIDESHOW */
/* * {box-sizing:border-box} */

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  width: 50%;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

.slideDesc h2 {
    font-family: 'Aileron', sans-serif;
    text-align: center;
    color: var(--text_color);
    font-size: 32px;
    margin-top: 2%;
    font-weight: bold;
}

.slideDesc p {
    margin: auto;
    margin-top: 20px;
    font-weight: normal;
    text-align: center;
    width: 60%;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 64px;
  height: 64px;
  margin-top: -22px;
  padding: 16px;
  color: white;
  background-color: var(--acc_color);
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  transition: 0.6s ease;
  border-radius: 50%;
  user-select: none;
}

.prev {
    margin-left: -10%;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  margin-right: -10%;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: var(--sec_bg_col);
}

/* Caption text */
.text {
  color: var(--text_color);
  font-size: 15px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: var(--text_color);
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 64px;
  width: 64px;
  margin: 0 2%;
  background-color: #bbb;
  border-radius: 12px;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
    width: 72px;
    height: 72px;
}

.dot:hover {
    color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* end of Skills page */

/* about me page */

.aboutme {
    width: 100%;
    height: auto;
    margin-bottom: 25%;
}

.aboutme h1, p, hr{
    margin-right: 8%;
}

.aboutme h1 {
    padding-top: 12.5%;
    text-align: right;
    font-size: 64px;
    animation: drop 1s ease;
}

.aboutme hr {
    border-style: solid;
    border-width: 3px;
    width: 27%;
    color: var(--acc_color);
    animation: drop 1s ease;
    border-radius: 3px;
    height: 3px;
    float: right;
    display: block;
}

.aboutme p {
    color: rgb(255, 255, 255);
    font-size: 18px;
    text-align: right;
    animation: drop 1s;
    animation-delay: 0.1s;
    animation-fill-mode: backwards;
    margin-top: 20px;
    width: 50%;
    float: right;
    display: block;
}

.intro-text {
    justify-content: center;
    width: auto;
    height: 100%;
    align-items: center;
}

/* end of About me page */

/* contact page */

.contactinfo {
    margin-top: 2%;
    padding-bottom: 5%;
}

.contactinfo p {
    font-size: 24px;
    font-weight: normal;
}

/* end of contact page */

@keyframes drop {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px); 
    }
}
/* 
@media screen and (max-width: 1024px) {
.presentation {
    flex-direction: column;
}
.introduction {
    margin: 10vh;
    text-align: center;
}
.intro-text h1 {
    font-size: 30px;

}
.intro-text p {
    font-size: 10px;
}
} */
