* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    background-color: #2b2b2b;
    font-size: 22px;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid coral;
    padding-bottom: 10px;
}

footer {
    text-align: left;
    font-family: "Cutive Mono";
    background-color: #e5dcca;
    padding: 10px;
}

footer a {
    text-decoration: none;
    font-weight: 700;
    color: #2b2b2b
}

footer a:hover {
    color: rgba(0, 128, 128, 0.5);
}

nav {
    margin: 10px;
    font-family: Wellfleet;
}

nav ul{
    list-style-type: none;
}

nav ul li {
    display: inline;
    padding: 25px;    
}

li a {
    color: rgba(255, 180, 180, 0.8);
    text-decoration: none;
}

li a:hover {
    color: rgba(255, 127, 80, 0.5);
}

#logo {
    text-align: center;
    font-family: 'Fira Code';
    color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    font-size: 2rem;
    background-color: rgba(43, 43, 43, 0.6);
    width: 100%;
    margin-bottom: 10px;
}

#mission-statement {
    width: 100%;
    position: relative; 
    display: inline-block;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid coral;
}

#mission-statement img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin: auto;
}

#mission-statement p {
    font-family: "Cutive Mono";
    line-height: 2;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0, -50%);
    text-align: center;
    color:#fff;
    text-shadow: 0 0 15px;
    background-color: rgba(43, 43, 43, 0.5);
}

#title {
    text-align: center;
    font-family: "Cutive Mono";
    color: white;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.2);
}

#showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#showcase h2 {
    font-family: Wellfleet;
    color: white;    
}

#showcase a {
    text-decoration: none;
    color: white;
}

#showcase a:hover {
    color: rgba(255, 162, 128, 0.5);
}

.tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;

}

.tile img {
    width: 356px;
    height: 200px;
    object-fit: cover;
    margin: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.tile img:hover {
    transform: scale(2); /* zooms the image by 10% when hovered over */
}

.tile p {
    text-align: center; /* centers the text */
    width: 50%;
    font-family: Wellfleet;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 2;
}

.images {
    display: flex;
    justify-content: center;
}

#about {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    background-image: url("../images/aboutbg.png");
    border-top: 1px solid coral;
}

#about .aboutdev {
    font-family: "Cutive Mono";
    color: white;
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    width: 45%;
    margin: 20px;
}

#reviews {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    padding: 20px;
    justify-content: center;
}

.review {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    padding: 30px;
    font-style: italic;
    font-family: "Cutive Mono";
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 15px;
    text-shadow: 0 0 15px;
    width: 25%;
}

.bold {
    font-weight: 700;
}

.underline {
    text-decoration: underline;
}