/*Desktop*/

.underline {
    text-decoration: underline;
}

@media (min-width: 768px) {
    body {
        background-color: #42B75B;
        font-family: 'Trebuchet MS';
        height: 100%;
        text-wrap: pretty;
    }

    .main,
    .top {
        height: 90vh;
        text-wrap: pretty;
    }

    .main {
        float: left;
        display: block;
        padding: 2%;
        margin: 0px;
        background-color: #ffffff;
        width: 56%;
        margin-left: 10%;
        margin-right: auto;

    }

    .top {
        font-family: "Comic Sans MS";
        background-color: #7b4b8b;
        float: right;
        width: 17%;
        margin-right: 10%;
        padding: 1.5%;
        padding-bottom: 2.5%;

    }

    .headshot {
        display: block;
        width: 80%;
        border-radius: 50%;
        margin-left: auto;
        margin-right: auto;
        border-style: double;
        border-width: 7.5px;

    }

    .button {
        display: block;
        width: 100%;
        padding-top: 0.5%;
        padding-bottom: 0.5%;
    }



    h2 {
        margin-bottom: 0px;

    }

    p {
        margin-top: 0px;
    }
}


/*Mobile*/
@media (max-width: 768px) {

    .desktop {
        visibility: hidden;
        height: 0;
    }

    body {
        background-color: #42B75B;
        color: #ffffff;
    }

    .main {
        text-align: center;
        background-color: #ffffff;
        border-bottom-left-radius: 5%;
        border-bottom-right-radius: 5%;
        padding: 5%;
        color: #7b4b8b;
        margin-top: 0px;
        font-family: "Trebuchet MS";
    }

    .top {
        background-color: #7b4b8b;
        padding: 5%;
        border-top-left-radius: 5%;
        border-top-right-radius: 5%;
        text-align: center;
        margin-bottom: 0px;
        font-family: "Trebuchet MS"
    }

    .button {
        display: block;
        width: 100%;
        background-color: #7b4b8b;
        border-radius: 10px;
        color: white;
        padding: 10px 0;
        font-size: large;
        text-transform: capitalize;
        text-align: center;
        text-decoration: none;
        box-sizing: border-box;
        transition: background-color 0.3s ease;
        margin-top: 10px;
    }

    .button:hover {
        background-color: #c66dc6;
        color: black;

    }

    .links {
        margin-top: 10px;
    }

    .headshot {
        border-radius: 50%;
        width: 60%;
        border-style: double;
        border-width: 7.5px;
    }

}