@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Special+Gothic+Expanded+One&display=swap');

body {
    background-color: #0c0020;
    color: white;
    font-family: "IBM Plex Sans", sans-serif;
}

h1 {
    font-family: "Special Gothic Expanded One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 150px;
    margin: 0px;
}

h2 {
    font-family: "Special Gothic Expanded One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
}

h3 {
    font-size: 30px;
}

p {
    font-size: 20px;
}

button {
    border-radius: 10px;
    border-width: 0;
    font-size: 20px;
    font-family: "IBM Plex Sans", sans-serif;
    background-color: darkblue;
    color: white;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
}


#top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* This centers the H1 perfectly in the 95vh height */
    height: 95vh;
    position: relative; /* This allows us to anchor the buttons to the bottom */
}

#top h1 {
    margin: 0; /* Removes default margins that might shift it */
    display: flex;
    align-items: center;
    justify-content: center;
}

#buttons {
    position: absolute; /* Takes buttons out of the layout flow */
    bottom: 20px;       /* Anchors them 20px from the bottom of #top */
    display: flex;
    gap: 10px;          /* Clean spacing between buttons */
}

#scrollhelper {
    position: absolute; /* Takes buttons out of the layout flow */
    bottom: 100px;       /* Anchors them 20px from the bottom of #top */
    display: flex;
    gap: 10px;          /* Clean spacing between buttons */
    color: #54397e;
}

#buttons button {
    font-size: 40px;
}

.projects {
    padding: 0px 10px 10px 10px;
    margin: 10px;
    border-radius: 10px;
}

.projects-container {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.projects h2 {
    padding-top: 10px;
    padding-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project {
    background-color: #130031;
    border-radius: 10px;
    padding: 10px;
    padding-top: 0px;
    margin: 10px;
    margin-bottom: 20px;
    width: 30%;
    height: fit-content;
}

.project h3 {
    padding: 0px;
}

.about {
    padding: 0px 10px 10px 10px;
    margin: 10px;
    border-radius: 10px;
    width: 60%;
    background-color: #130031;
}

.about-container {
    display: grid;
    place-items: center;
}

.about h2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

