/* Basic HTML Elements */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

::placeholder {
    color: rgb(182, 176, 176);
  }

body {
    background: rgba(131, 89, 6, 0.966);
    background-image: url("https://www.transparenttextures.com/patterns/brushed-alum.png");
}

button {
    cursor: pointer;
}


/* Id Elements */

/* Class Elements */

.heading {
    background-color: rgb(18, 94, 145);
    color: white;
    height: 80px;
    padding: 25px 0px 0px 40px;
}

.activity-block {
    border: solid;
    border-width: 2px;
    border-color: white;
    margin: 10px;
    padding-top: 15px;
    background-color: rgb(16, 25, 51);
    opacity: 60%;
    color: white;
    height: 130px;
    width: 370px;
    text-align: center;
    float: left;
}

.activities {
    margin-top: 100px;
    margin-left: 60px;
}


.activity-block button {
    background-color: rgb(18, 94, 145);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    color: white;
    font-size: 15px;
    border: none;
    outline: none;
    margin: 10px 10px 0 10px;
}

.entry-field {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 40px;
}

.entry-field input {
    font-size: 30px;
    background-color: rgb(68, 63, 63);
    color: white;
    
}

.entry-field button {
    background-color: rgb(18, 94, 145);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    color: white;
    font-size: 15px;
    border: none;
    outline: none;
    margin: 10px 10px 0 10px;
}

.space {
    margin-left: 3%;
}

