/* background color of whole page */
.bg{
    background-color: rgb(255, 247, 237);
}

/* body */
.container{
    text-align: center;
    padding-top: 20px;
}

/* main image */
.circular{
    border-radius: 50%;
    height: 200px;
    width: 200px;
    border: 2px solid black;
}

/* buttons */
.button{
    background-color: #2c5cfb81;
    color: white;
    border-radius: 10px;
    height: 50px;
    width: 300px;
    font-weight: bold;
    padding: 5px 5px;
    border: none;
    box-shadow: 2px 2px rgba(0, 0, 0, 0.151);
}

/* button hover */
.button:hover {
    background-color: #2991f3;
}

/* summary text */
p{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 200;
    color: rgb(122, 122, 250);
}

/* summary text links */
.a{
    color: rgb(122, 122, 250);
}

/* rest of the links */
a{
    text-decoration: none;
    color: white;
}