:root {
    --purple: #ffb3fd;
    --green: #01ffc3;
    --orange: #ff7d72;
    --white: #eeeeee;
} 

@font-face {
    font-family:'Rubik';
    font-style: normal;
    font-weight: 400;
    src: url(/fonts/Rubik-Regular.woff2) format('woff2')
}

@font-face {
    font-family:'Rubik';
    font-style: normal;
    font-weight: 300;
    src: url(/fonts/Rubik-Light.woff2) format('woff2')
}

hr {
       display: block;
       position: relative;
       padding: 0;
       margin: 8px auto;
       height: 0;
       max-width: 80%;
       max-height: 0;
       font-size: 1px;
       line-height: 0;
       clear: both;
       border: 1px solid #dddddd;
    }

body {
    background-color: black;
    color: GhostWhite;
    font-family: 'Rubik', sans-serif;
}

.headline_text {
    margin: auto;
    width: 80%;
    text-align: center;
    color: GhostWhite;
    font-size: 2vw;
    font-family: 'Rubik', sans-serif;
    padding: 20px;
}

.logo_image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
}

* {
    box-sizing: border-box;
}

.menu_body {
    width: 80%;
    margin: auto;
    font-family: 'Rubik', sans-serif;
}

.menu_item {
    width: 33%;
    padding: 10px;
    float: left;
}

.menu_link {
    text-decoration: none;
}

.menu_phone {
    color: var(--purple);
    text-align: left;
}

.menu_contact {
    color: var(--purple);
    text-align: center;
}



.menu_mail {
    color: #01ffff;
    text-align: center;
}

.menu_insta {
    color: var(--green);
    text-align: center;
}

.menu_soundcloud {
    color: var(--orange);
    text-align: center;
}

a.menu_contact:hover {

       animation: purple 1.5s ease-in-out infinite alternate;
}

    @keyframes purple {
        from {
            text-shadow: 0 0 10px var(--white),
                0 0 20px var(--white),
                0 0 30px var(--white),
                0 0 40px var(--purple),
                0 0 70px var(--purple),
                0 0 80px var(--purple),
                0 0 100px var(--purple),
                0 0 150px var(--purple);
        }
        to {
            text-shadow: 0 0 5px var(--white),
                0 0 10px var(--white),
                0 0 15px var(--white),
                0 0 20px var(--purple),
                0 0 35px var(--purple),
                0 0 40px var(--purple),
                0 0 50px var(--purple),
                0 0 75px var(--purple);
        }
    }

a.menu_insta:hover {
        animation: green 1.5s ease-in-out infinite alternate;
}
    @keyframes green {
        from {
            text-shadow: 0 0 10px var(--white),
                0 0 20px var(--white),
                0 0 30px var(--white),
                0 0 40px var(--green),
                0 0 70px var(--green),
                0 0 80px var(--green),
                0 0 100px var(--green),
                0 0 150px var(--green);
        }
        to {
            text-shadow: 0 0 5px var(--white),
                0 0 10px var(--white),
                0 0 15px var(--white),
                0 0 20px var(--green),
                0 0 35px var(--green),
                0 0 40px var(--green),
                0 0 50px var(--green),
                0 0 75px var(--green);
        }
    }

a.menu_soundcloud:hover {
        animation: orange 1.5s ease-in-out infinite alternate;
}
    @keyframes orange {
        from {
            text-shadow: 0 0 10px var(--white),
                0 0 20px var(--white),
                0 0 30px var(--white),
                0 0 40px var(--orange),
                0 0 70px var(--orange),
                0 0 80px var(--orange),
                0 0 100px var(--orange),
                0 0 150px var(--orange);
        }
        to {
            text-shadow: 0 0 5px var(--white),
                0 0 10px var(--white),
                0 0 15px var(--white),
                0 0 20px var(--orange),
                0 0 35px var(--orange),
                0 0 40px var(--orange),
                0 0 50px var(--orange),
                0 0 75px var(--orange);
        }
    }



@media screen and (max-width: 800px) { 
    .menu_item { 
        width: 100%; 
        text-align: center;
    }

    .logo_image {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .headline_text {
        font-size: 30;
    }
}

