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

body {
    display: flex;
    justify-content: center;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><line x1='0.5' y1='0.5' x2='5.5' y2='0.5' style='stroke:rgb(255,255,255);stroke-width:1'/><line x1='200.5' y1='0.5' x2='195.5' y2='0.5' style='stroke:rgb(255,255,255);stroke-width:1'/><line x1='0.5' y1='0.5' x2='0.5' y2='5.5' style='stroke:rgb(255,255,255);stroke-width:1'/><line x1='0.5' y1='200.5' x2='0.5' y2='195.5' style='stroke:rgb(255,255,255);stroke-width:1'/></svg>"), linear-gradient(to right, #444 1px, transparent 0, transparent 200px), linear-gradient(to bottom, #444 1px, transparent 0, transparent 200px);
    background-color: #181818;
    background-size: 100px 100px;
    background-repeat: repeat;
    background-position: center;
}

.mainDiv {
    margin-top: 100px;
    margin-bottom: 100px;
    background-color: #202020;
    width: 70%;
    box-shadow: 0px 0px 40px 1px rgba(0, 0, 0, 0.281);
    border-radius: 10px;
}

.navbar{
    height: 100px;
    border-bottom: #181818 2px solid;
}

.navList{
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style-type: none;
    height: 100%;
}

.navList li a{
    color: white;
    text-decoration: none;
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    transition: 0.4s ease;
}

.navList li a:hover{
letter-spacing: 5px;
}

.headName{
    font-family: "Freckle Face", system-ui;
    color: white;
    font-size: 200px;
}

.content{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chookyIMG{
    width: 30%;
    float: right;
      -webkit-filter: drop-shadow(0px 0px 15px #00000098);
  filter: drop-shadow(0px 0px 15px #00000098);
  transform: rotate(10deg);
  animation-name: Twister;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

@keyframes Twister {
    0% {transform: rotate(10deg);}
    50% {transform: rotate(-10deg);}
    100% {transform: rotate(10deg);}
}

.paragraphText{
    color: white;
    font-size: 20px;
    font-family: "Google Sans", sans-serif;
}

.infoSection{
    display: block;
    text-align: left;
    width: 90%;
    margin-bottom: 25px;
}

.interestList{
    color: white;
    font-size: 20px;
    font-family: "Google Sans", sans-serif;
    margin-left: 50px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.bold{
    font-weight: 700;
}

.socials{
    height: 60px;
    border-top: #181818 2px solid;
    width: 100%;
    margin-top: 25px;
    display: flex;
    justify-content: space-around;
}

.socialList{
    list-style: none;
    color: white;
    font-family: "Google Sans", sans-serif;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}
.socialList li{
display: flex;
align-items: center;
}

.socialList li img{
    width: 50px;
    margin-right: 10px;
}

.blinkies{
    width: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.blinkies img{
    width: 300px;
}

.champ{
    width: 30px;
    margin: 0px;
    margin-bottom: -7px;
}

@media (max-width: 1000px) {
    .headName{
        font-size: 100px;
    }

    .infoSection{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 25px;
    }

    .interestList{
        margin-left: 20px;
    }

    .navList li a{
        font-size: 30px;
    }
}

@media (max-width: 520px) {
    .mainDiv{
        width: 95%;
    }

        .headName{
        font-size: 60px;
    }

    .chookyIMG{
        width: 60%;
    }

        .interestList{
        margin-left: 10px;
    }

    .blinkies img{
    width: 80%;
}
}