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

html {
    background-color: black;
}

.invisible {
    margin: 0px;
    padding: 0px;
    width: 0px;
    height: 0px;
    background-color: transparent;
    color: transparent !important;
}

h1 {
    text-align: center;
}

h2 {
    text-align: center;
}

div {
    background-color: lavender;
    padding: 10px;
    border-radius: 10px;
}

a.button {
    background-color: lightcoral;
    padding: 10px;
    border-radius: 10px;
    border: 4px solid white;
    margin-bottom: 40px;
    font-size: large;
    text-align: center;
    color: black;
}

a.button:hover {
    background-color: indianred;
}

a.button.home {
    position: absolute;
    top: 10px;
    left: 10px;
}

div.title {
    margin-bottom: 40px;
    margin-top: 10px;
}

div.desc {
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 40px;
}

div.guestbookHeading {
    margin-left: 40%;
    margin-right: 40%;
    margin-bottom: 10px;
}

div.centerer {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}

#guestbook {
    border-radius: 20px;
}

div.disclaimer {
    margin-top: 50px;
    display: inline-block;
}

div.infoBox {
    margin-bottom: 50px;
    margin-left: 10%;
    margin-right: 10%;
}

div.tabs {
    display: flex;
    justify-content: space-around;
    padding: 0px;
    margin-bottom: 10px;
}

span.clicker {
    display: inline-block;
    flex-grow: 1;
    padding: 10px;
    margin: 5px;
    text-align: center;
    border-radius: 5px;
    border: 4px solid black;
}

.projects {
    background-color: palevioletred;
}

.education {
    background-color: palegoldenrod;
}

.interests {
    background-color: palegreen;
}

ul {
    margin-left: 20px;
}

li {
    margin-top: 20px;
}

#clickMe {
    text-align: center;
    color: darkslateblue;
    font-size: small;
}