﻿.hover:hover {
    color: #e0e0e0;
    cursor: pointer;
}

textarea {
    resize: vertical;
    width: 100%;
}

.border {
    padding: 10px;   
    display: inline-block;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
}

.flex-item {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .flex-item:nth-child(3) {
        flex: 1 1 100%; 
    }

.homelink {
    border: 1px solid #000;
    width: 115px; 
    height: 115px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.buttonCSS {
    width: 125px;
    background-color: #0c87fe;
    border-radius: 2px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: white;
}

    .buttonCSS:hover {
        background-color: #076bcb;
    }


