*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.title {
    width: 100%;
	text-align: center;
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 20px;
}


.cs-projects {
    width: 100%;
    text-align: center;
}
.chess {
    height: 109px;
    width: 500px;
    margin: auto;
    margin-top: 15px;
    padding: 10px;
    border: solid;
    border-width: 0px;
    border-radius: 10px;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    transition: 0.5s;
    overflow: hidden;
}
.instructions-button {
    background-color: darkgrey;
    width: 145px;
    font-size: 20px;
    color: white;
    margin-top: 10px;
    border-radius: 10px;
}
.download {
    font-size: 20px;
    color: blue;
    margin: 5px;
}
.source-code {
    font-size: 20px;
    color: blue;
    margin: 5px;
}
.instructions {
    height: 0;
    margin: 15px;
    text-align: left;
    transition: 0.5s;
}
.bottom {
    position: fixed;
    bottom: 0;
    width: auto;
    margin-left: 5px;
    margin-bottom: 5px;
}
.email {
    font-size: 12px;
}
.copyright {
    font-size: 12px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 28px;
}
p {
    font-size: 15px;
}

@media(max-width: 550px) {
    .title {
        font-size: 25px;
    }
    h2 {
        font-size: 20px;
    }
    .instructions {
        height: auto;
        margin-bottom: 5px;
    }
    .chess {
        max-width: 90%;
        height: auto;
        overflow: visible;
    }
    .instructions-button {
        display: none;
    }
}
@media(max-height: 350px) {
    .bottom {
        position: static;
        width: auto;
        margin-top: 10px;
        margin-left: 5px;
        margin-bottom: 5px;
    }
}