* {
    padding: 0;
    margin: 2px;
    box-sizing: border-box;
}

html {
    background-color: #f4f1f3;
    background-image: linear-gradient(rgb(248, 255, 198), rgb(255, 240, 110), rgb(254, 254, 97));
    display: grid;
    height: 100%;
}

header,
footer {
    font-family: "Pacifico", cursive;
    width: 100%;
}

h1 {
    width: auto;
    align-self: center;
    text-align: center;
    margin-top: 15px;
    border-bottom: 4px solid rgb(0, 0, 127);
    border-radius: 25px;
}

.h1_text {
    color: #d51f86;
    font-weight: 700;
}

aside {
    font-family: "Lucida Handwriting , 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial", sans-serif;
}

#nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: fit-content;
    width: 100%;
    background-image: linear-gradient(#93deeb, #c1dce5);
    outline: 2px solid rgb(4, 4, 70);
    border-radius: 10px;
}

nav {
    display: flex;
}

ul {
    list-style: none;
    justify-content: space-evenly;
}

a {
    text-decoration: none;
    color: rgb(41, 19, 187);
}

#nav ul {
    display: flex;
    justify-content: space-evenly;
    margin-right: 170px;
    margin-left: 170px;
    font-size: 25px;
}

nav ul li a {
    padding: 15px 20px;
    font-weight: 600;
    font-size: 15px;
    justify-content: space-evenly;
}

a:hover {
    border-bottom: 2px dashed #2908bd;
}

.logo {
    width: 170px;
    height: 100px;
    margin-left: 50px;
    border: 4px solid rgb(255, 255, 255);
    border-radius: 20px;
}

.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

input[type="text"] {
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#search {
    color: rgb(53, 19, 187);
    font-size: 30px;
}

.container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-template-areas:
        "m m m as";
}

.imgs {
    border: 4px solid rgb(106, 0, 110);
    border-radius: 15px;
    text-align: center;
    margin: auto;
    display: block;
    width: 500px;
    height: 250px;
}

main {
    grid-area: m;
}

.WalkthroughHLD {
    font-size: 45px;
    font-weight: 700;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.Walkthrough {
    font-size: 30px;
    font-weight: 550;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.sportInfoHLD {
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.sportInfo {
    font-size: 23px;
    font-weight: 450;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.aside {
    grid-area: as;
    border: 3px solid rgb(128, 0, 100);
    border-radius: 10px;
    width: auto;
    height: auto;
    background-image: linear-gradient(#edc4e7, #f7c8ec);
    display: flex;
    flex-direction: column;
}

.asideLogo {
    width: 170px;
    height: 110px;
    margin: 10px;
    align-self: center;
    border: 5px double rgb(12, 3, 69);
    border-radius: 20px;
}

.InfoHd {
    align-self: center;
    font-size: 25px;
    font-weight: 600;
    color: rgb(12, 3, 69);
}

h3,
.followh3 {
    display: flex;
    align-self: center;
    font-size: 17px;

}

.info {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    align-self: center;
    font-size: 19px;
}

.end {
    display: flex;
    justify-content: center;
    border: 5px double rgb(110, 207, 239);
    border-radius: 10px;
}

footer {
    background-color: #383848;
    text-align: center;
    color: #fff;
    padding: 15px;
    width: 100%;
    font-size: 20px;
    border-radius: 10px;
    margin-top: 20px;
}