

/*
.text-center {
    text-align: center;
}
*/

.photo-container {
    width: 45%;
    left: 27.5%;
    position: relative;
}

.link-text {
    font-size: 20px;
    width: 200px;
    padding-left: 10px;
    padding-right: 10px;
}

/*
.navbar-toggler:hover {
    background-color: purple;
}
*/


.profile-image {
  border-radius: 8px;
/*    max-height: 50vh;*/
/*    width: auto;*/
}

.action-button {
    background-color: white;
    color: black;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
}

.top-right {
    float: right;
    margin-right: 20px;
    margin-top: 20px;
}

.action-button :hover {
    color: white;
    background-color: black;
}

html {
    background: #000;
/*    background-image: linear-gradient(270deg, rgb(230, 233, 233) 0%, rgb(216, 221, 221) 100%);*/
/*    -webkit-font-smoothing: antialiased;*/
}

body {
    background: #000;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
    color: #545454;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
/*    max-width: 800px;*/
/*    padding: 2em 2em 4em;*/
}

.footer {
    height: 100px;
/*    bottom: 0px;*/
    position: relative;
    margin-top: -100px
}

.footer-link {
    font-size: 16px;
    color: #545454;
}

h1, h2, h3, h4, h5, h6 {
    color: #fff;
    font-weight: 600;
    line-height: 1.3;
}
h1 {
    font-size: 200px;
}

h2 {
    margin-top: 1.3em;
}

a {
    color: #fff;
    font-family: 'Oswald', sans-serif;
}

p {
    font-family: 'Oswald', sans-serif;
}

li {
    font-family: 'Oswald', sans-serif;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
color: purple;
}

a:active {
  text-decoration: none;
}

b, strong {
    font-weight: 600;
}

samp {
    display: none;
}

img {
    animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
    background: transparent;
/*    border: 10px solid rgba(0, 0, 0, 0.12);*/
/*    border-radius: 4px;*/
    display: block;
    margin: 1.3em auto;
    max-width: 95%;
}

@keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }
}

/*Video Player*/
#SRVideo {
    position: fixed;
    right: 0;
/*    bottom: 0;*/
    top: -700px;
    min-width: 100%;
    min-height: 100%;
}

iframe {
    width: 45vw;
    height: calc(45vw/1.77);
}

@media screen and (max-width: 768px) {
    iframe {
        width: 65vw;
        height: calc(65vw/1.77);
    }
}
@media screen and (max-width: 480px) {
    iframe {
        width: 75vw;
        height: calc(75vw/1.77);
    }
}

/*CONTACT FORM*/

.contactInput {
    width: 75%;
    height:50px;
    border-radius: 5px;
    padding-left: 10px;
    background-color: rgba(255, 255, 255, 1);
}

.contactInputName {
    width: 75%;
    text-align: left;
    color: white;
    font-family: 'Oswald', sans-serif;
}

.formSubmitButton {
    width: 15%;
    height: 50px;
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
    background-color: purple;
    color: white;
}


/* SOUNDCLOUD BANNER */
.about-text {
    width: 75%;
}

.soundcloud-player {
    width:45%; 
    height:115px;
}

.soundcloud-player-playlist {
    width:55%; 
    height:400px;
}

@media screen and (max-width: 768px) {
    .about-text {
        width: 100%;
    }
    
    .soundcloud-player {
        width:90%; 
        height:125px;
    }
    
    .soundcloud-player-playlist {
        width:80%; 
        height:500px;
    }
}
@media screen and (max-width: 480px) {
    .soundcloud-player {
        width:90%; 
        height:125px;
    }
    
    .soundcloud-player-playlist {
        width:100%; 
        height:500px;
    }
}