body {
    background-color: rgb(250, 245, 208);
    font-family: 'Goudy Bookletter 1911', serif;
    margin: 0;
    padding: 0;
}

div.banner-container {
    background-color: rgb(84, 195, 255);
    width: 100vw;
    height: auto;
    overflow: hidden; 
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

h3 {
    text-align: center;
    color: rgb(0, 0, 0);
}

img.banner {
    width: 50%;
    height: auto;
    display: block;
}

.banner-text {
    width: 50%;
    padding: 40px;
    box-sizing: border-box;
    color: rgb(0, 0, 0);
    font-size: 18px;
    text-align: center;
    margin: 0;
    font-family: 'Goudy Bookletter 1911', serif;
}

header {
    text-align: center;
    background-color: rgb(140, 225, 233);
    width: 100vw;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Goudy Bookletter 1911', serif;
}

nav a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    margin: 0 15px;
    font-size: 18px;
}

section {
    padding: 40px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Goudy Bookletter 1911', serif;
}

ul.social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    align-items: center;
}

ul.social-icons a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 40px;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

ul.social-icons svg {
    width: 40px;
    height: 40px;
    display: block;
}

ul.social-icons a:hover {
    transform: scale(1.1);
}

ul.social-icons a[title="GitHub"]:hover {
    color: #616f7e;
}

ul.social-icons a[title="Discord"]:hover {
    color: #5865F2;
}

ul.social-icons a[title="Spotify"]:hover {
    color: #1ED760;
}

ul.social-icons a[title="Devpost"]:hover {
    color: #003E54;
}