body {
    color: #2898BD;
}

#imgdiv {
    padding-right: 2%;
}

#coverImage {
    min-width: 30em;
    max-width: 50em;
    border: 3px dashed #2898BD;
    border-radius: 16px;
}

.hidden-before-load {
    display: none !important;
    visibility: hidden !important;
}

.input-field {
    border-radius: 10px;
    padding: 10px;
    border: 2px solid #2898BD;
    box-shadow: none;
}
    .input-field:focus {
        outline: none;
        box-shadow: none;
        border: 3px solid #2898BD;
    }

.button {
    border-radius: 30px;
    background-color: #2898BD;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 20px 30px;
    cursor: pointer;
    position: relative;
    transition: all 0.5s;
    text-transform: uppercase;
    border: none;
}

    .button:hover {
        background-color: rgb(189, 0, 0);
    }

    .button span:first-child {
        padding-left: 10px;
        transition: all 0.5s;
    }

    .button:hover span:first-child {
        padding-left: 0px;
    }

    .button span:last-child {
        opacity: 0;
        transition: all 0.5s;
        padding-left: 0px;
    }

    .button:hover span:last-child {
        opacity: 1;
        padding-left: 10px;
    }

.selected-skills div {
    padding: 5px 10px;
    margin: 5px;
    display: inline-block;
    color: white;
    border-radius: 5px;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    cursor: pointer;
    font-size: 16px;
}

    .selected-skills div button {
        margin-left: 10px;
        color: red;
        border: none;
        background: none;
        cursor: pointer;
    }

.skill-dropdown {
    display: block;
}
