﻿
.switcher {
    display: inline-block;
    cursor: pointer;
    width: 200px;
    height: 75px;
    font-family: "tellMeASecret";
    color: #ea2300;
    background-color: #eee;
    text-align: center;
    font-size: 45px;
    border: 1px solid black;
    font-weight: 700;
    letter-spacing: 10px;
    margin: -2px;
}


    .switcher p {
        margin: 22px auto;
    }

.switcher-active {
    color: white;
    background-color: #ea2300;
}


@media screen and (min-width:500px) {
    .switcher {
        width: 200px;
    }
}

@media screen and (min-width:768px) {
    .switcher {
        width: 300px;
    }
}

@media screen and (min-width:1000px) {
    .switcher {
        width: 500px;
    }
}

