@import 'colors.css';

/* Spacing Standards */
/* XL - 48px */
/* L - 32px*/
/* M - 16px */
/* S - 8px */
/* XS - 4px */

h1 {
    font-weight: 300;
}
h2 {
    font-weight: 300;
}
h3 {
    font-weight: 300;
}
p {
    font-weight: 300;
}
body {
    font-family: sans-serif;
    width: 100%;
    height: 100%;
    margin: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--beige);
    color: var(--wave-teal);
    box-sizing: border-box;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: var(--wave-blue);
    color: var(--beige);
    padding: 0px 16px 0px 16px;
    box-sizing: border-box;
}
header h1 {
    margin: 4px;
}
#linklog-title {
    cursor: pointer;
}
main {
    padding: 48px;
}
.menubar {
    list-style-type: none;
    width: 100%;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.menubar button {
    flex: 1;
    padding: 4px;
    max-width: 100px;
    font-size: 16px;
    text-align: center;
    outline: none;
    background: none;
    color: var(--beige);
    transition: border-bottom 0.1s ease-in-out;
    border: none;
    border-bottom: 4px solid transparent;
}
.menubar button:nth-child(1):hover {
    border-bottom: var(--link-1-line);
    cursor: pointer;
    border-bottom: 4px solid var(--link-1-line);
}
.menubar button:nth-child(2):hover {
    border-bottom: var(--link-1-line);
    cursor: pointer;
    border-bottom: 4px solid var(--link-2-line);
}
.menubar button:nth-child(3):hover {
    border-bottom: var(--link-1-line);
    cursor: pointer;
    border-bottom: 4px solid var(--link-3-line);
}
.menubutton {
    color: var(--beige);
    background-color: var(--wave-blue);
    margin-right: 16px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}
.updates-container {
    display: flex;
    flex-direction: column;
    min-width: 200px;
}
.update {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.updates-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
}
.updates-timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 10px;
    background-color: var(--link-1-line);
    transform: translateX(-50%);
}
.update-circle {
    width: 40px;
    height: 40px;
    background-color: var(--link-1-line);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.update-text {
    padding: 0px 16px 0px 16px;
    margin-bottom: 48px;
}
.update-text h3 {
    margin: 0px;
    font-weight: 400;
}
.update-text-header {
    margin-bottom: 16px;
}
.update-text-header h3, .update-text-header p {
    margin: 0px;
    color: var(--wave-blue);
}
.update-image {
    max-width: 100%;
}
.button-container {
    display: flex;
    gap: 10px;
}
.button-container button {
    flex: 1;
    padding: 16px;
    font-size: 24px;
    text-align: center;
    outline: none;
    background: none;
    transition: border-bottom 0.1s ease-in-out;
    border: none;
    border-bottom: 4px solid transparent;
}
.button-container button:nth-child(1):hover {
    border-bottom: var(--link-1-line);
    cursor: pointer;
    border-bottom: 4px solid var(--link-1-line);
}
 
.button-container button:nth-child(2):hover {
    border-bottom: var(--link-1-line);
    cursor: pointer;
    border-bottom: 4px solid var(--link-2-line);
}
.button-container button:nth-child(3):hover {
    border-bottom: var(--link-1-line);
    cursor: pointer;
    border-bottom: 4px solid var(--link-3-line);
}
