@import url('https://fonts.googleapis.com/css?family=Montserrat:100,300,500&display=swap');

body {
    margin: 0px;
}

.navbar {
    height: 70px;
    margin-left: 80px;
}

.navbar .category {
    display: inline-block;
    cursor: pointer;
    margin: 20px;
    font-weight: 300;
    font-size: 1.2em;
    color: #000;
    text-decoration: none;
}

.navbar .category:hover {
    font-weight: 400;
}

.navbar .category.active {
    font-weight: 400;
}

.name {
    text-align: center;
    font-weight: 100;
    font-size: 3em;
    margin-bottom: 20px;
}

.subname {
    text-align: center;
    font-weight: 800;
    font-size: 1em;
    margin-bottom: 30px;
    margin-top: -10px;
}

.title {
    position: absolute;
    text-align: center;
    font-size: 3.5em;
    color: #fff;
    bottom: 0px;
    left: 0px;
    width: 100%;
    font-family: Montserrat, sans-serif;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #000000;
}

input {
    font-size: 1em;
    width: 90%;
    padding: 5px;
    border: 1px solid #ccc;
}

.contactinfo {
    text-align:center;
    font-weight: 100;
    font-size: 3em;
}

@media only screen
  and (max-width: 750px)  {

    body {
        margin-top: 10%;
    }

    .navbar {
        margin-left: 10px;
        height: 30px;
    }

    .navbar .category {
        cursor: pointer;
        margin: 5px;
        margin-left: 15px;
        font-weight: 300;
        font-size: 0.5em;
        color: #000;
        text-decoration: none;
    }

    .name {
        font-size: 2em;
    }

    .title {
        font-size: 1.5em;
    }

    .contactinfo { 
        font-size: 1em;
    }

    .contactinfo a {
        font-size: 0.7em;
    } 
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none; /* Clicks pass through */
    z-index: 10;
}

.play-button-overlay svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.6));
}