@font-face {
    font-family: coolFont;
    src: url('https://fonts.cdnfonts.com/css/pacifico');
  }

body {
    background-color: rgb(32, 32, 32);
    color: white;
    overflow-x: hidden;

}

body::-webkit-scrollbar{
    width: 0.55em;

}

body::-webkit-scrollbar-track{
    background : black;
}

body::-webkit-scrollbar-thumb{
    background-color: rgb(108, 76, 138);
    border-radius: 12px;
}


h1 {
    text-align: center;
    color: white;
    overflow: hidden;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.anchorBoi{
    display: block;
    position: relative;
}

.welcomeSection{
    overflow: hidden;
    margin-top: 0.25em;
    text-align: center;
    padding-top: 1.25em;
    padding-bottom: 3.25em;
    font-size: 4.3vw;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(226, 225, 225);
    animation: fadeIn 2.25s;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.welcomeSection p{
    overflow: hidden;
    color: rgb(136, 112, 148);
    animation: fadeIn 5.25s;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.welcomeSection h1{
    overflow: hidden;
    font-family: 'Pacifico', sans-serif;
    animation: fadeIn 2.25s;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.infoCard{
    border-radius: 15px;
    overflow: hidden;
    margin-top: 2.25em;
    margin-bottom: 0.5em;
    text-align: center;
    padding-top: 1.25em;
    padding-bottom: 1.25em;
    font-size: 4.3vw;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(226, 225, 225);
    animation: fadeIn 2.25s;
    background-color: rgb(54, 49, 58);
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.infoCard h1{
    text-align: left;
    margin-left: 1em;
    color: white;
    overflow: hidden;
    transition: 1s;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.infoCard h2{
    text-align: right;
    margin-right: 1em;
    color: white;
    overflow: hidden;
    transition: 1s;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
.infoCard h1:hover{
    font-size: 9.5vw;
}

.infoCard h2:hover{
    font-size: 9.5vw;
}

.infoCard p{
    overflow: hidden;
    text-align: left;
    margin-left: 4.5em;
    color: rgb(221, 218, 218);
    animation: fadeIn 5.25s;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.infoCard {
    overflow: hidden;
    color: rgb(146, 146, 146);
    animation: fadeIn 5.25s;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.paraTwo{
    overflow: hidden;
    color: rgb(146, 146, 146);
    animation: fadeIn 5.25s;
    font-size: 2vw;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.contactPara{
    overflow: hidden;
    text-align: left;
    margin-left: 2.5em;
    color: rgb(221, 218, 218);
    font-size: 4vw;
    animation: fadeIn 5.25s;
    -webkit-user-select: text; /* Safari */
    -ms-user-select: text; /* IE 10 and IE 11 */
    user-select: text; /* Standard syntax */

}

.infoCard img{
    margin-top: 0.75em;
    width: 7vw;
    height: 7vw;
}


.fade-in {
    opacity: 1;
    animation: fadeIn 0.25s;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .sticky-nav {
    border-radius: 15px;
    position: -webkit-sticky;
    padding-top: 2em;
    padding-bottom: 2em;
    position: sticky;
    background-color: rgb(54, 49, 58);
    top: 0;
    z-index: 1;
    animation: fadeIn 6s;
    overflow: hidden;
  }

  .sticky-nav a{
    text-decoration: none;
    font-size: 3vw;
    margin-left: 1em;
    color: rgb(226, 225, 225);
    transition: 0.75s;
  }
  .sticky-nav a:hover{
    text-decoration: none;
    margin-left: 1em;
    color: rgb(173, 100, 216);
  }

