body {
    background-color: rgb(136, 136, 161);
    font-size: 40px;
}


/*header/nav links stuff*/
nav {
    display: flex;
    border-bottom: 2px solid rgb(21, 21, 22);
    font-weight: 900;
}
.my-info, .header-links {
    flex: 1;
    justify-content: center;
    align-items: center;
    display: flex;
}
nav > .my-info {
    display: flexbox;
    flex-direction: column;
}
li {
    list-style-type: none;
}


/*Introduction/about me stuff*/
#about-me {
    border: 2px solid rgb(155, 155, 155);
    border-radius: 150px 0px;
    padding: 1px 45px;
    margin: 25px;
    background-color: white;
    box-shadow: 0 10px 30px black;
    text-align: center;
}


/*skills/skill boxes stuff*/
#skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.skill-box {
    border: 2px solid rgb(155, 155, 155);
    padding: 1px 45px;
    margin: 25px;
    background-color: white;
    box-shadow: 0 10px 30px black;
    text-align: center;
    box-sizing: border-box;
    width: 40%;
    height: auto;
}
.skill-box:nth-child(odd) {
    border-radius: 0px 150px;
}
.skill-box:nth-child(even) {
    border-radius: 150px 0px;
}
.skill-box > img {
    width: auto;
    height: 200px;
    padding: 10px;
}
@media screen and (max-width: 1100px) {
    .skill-box {
        width: 100%;
    }
}


/*projects stuff*/
#projects {
    border: 2px solid rgb(155, 155, 155);
    border-radius: 0px 150px;
    padding: 1px 45px;
    margin: 25px;
    background-color: white;
    box-shadow: 0 10px 30px black;
}


/*form stuff*/
#form-container {
    border: 2px solid rgb(155, 155, 155);
    border-radius: 150px 0px;
    padding: 1px 45px;
    margin: 25px;
    background-color: white;
    box-shadow: 0 10px 30px black;
    font-size: 40px;
}
input {
    height: 55px;
    width: 40%;
    font-size: 40px;
}
textarea {
    height: 290px;
    width: 100%;
    font-size: 40px;
}
@media screen and (max-width: 1100px) {
    input {
        width: 100%;
    }
    input[type="submit"] {
        width: 60%;
    }
}


/*quiz page stuff...*/
button {
    height:45px;
    width:50px;
    font-size: 40px;
    border-radius: 10px;
}
.net {
    border-radius: 10px;
    background-color: aliceblue;
}






