:root {
  --calendar-color: #505A68;
}

body {
    margin: 0px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background-color: var(--calendar-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    text-decoration: none;
    color: #FFF;
}


/*HEADER*/ 

#header {
    width: -webkit-calc(100vw - 50px);
    width: -moz-calc(100vw - 50px);
    width: calc(100vw - 50px);
    height: 110px;
    position: fixed;
    top: 0;
    right: 0;
    text-align: center;
    z-index: 1;
    background-color: var(--calendar-color);
}

#header-shadow {
    width: -webkit-calc(100vw - 50px);
    width: -moz-calc(100vw - 50px);
    width: calc(100vw - 50px);
    height: 100px;
    position: fixed;
    top: 10px;
    right: 0;
    z-index: -1;
    box-shadow: 0 0 8px 6px rgba(0,0,0,0.05);
    border-radius: 100%;
}

#logo {
    margin-top: 24px;
}

#logo img {
    width: 180px;
}

#logo img:hover {
    cursor: pointer;
}

/*SHARE*/

#share {
    position: fixed;
    top: 0;
    right: 0;
    margin: 20px;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 53px;
}

#share svg {
    width: 23px;
    height: 23px;
}

.share-tooltip {
    position: absolute;
    color: var(--main-color);
    font-family: font_light;
    font-size: 9px;
    visibility: hidden;
}

#share svg:hover + .share-tooltip{
    visibility: visible;
}

/*ABOUT*/

#about {
    position: fixed;
    top: 24px;
    right: 168px;
    z-index: 2;
    font-family: font_light;
    color: var(--main-color);
    font-size: 13px;
}

#about:hover {
    text-decoration: underline;
}

/*LANGUAGE*/

#language {
    position: fixed;
    top: 24px;
    right: 100px;
    z-index: 2;
    font-family: font_light;
    color: #FFF;
    font-size: 13px;
    display: flex;
    flex-direction: row;
}

.language {
    color: var(--main-color);
}

.language:hover {
    text-decoration: underline;
}


/*GO ARCHIVE*/

.archive-box {
    width: 50px;
    height: 100vh;
    position: fixed;
    left: 0;
    background-color: #626A76;
    display: flex;
    justify-content: center;
    transition: all 0.7s;
    cursor: pointer;
    z-index: 2;
    box-shadow: 1px 0px 20px rgba(0,0,0,0.05);
}

.archive-box:hover {
    cursor: pointer;
}

.archive-box-expand {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-color: #626A76;
    pointer-events: none;
}

.archive-box-expand #day {
    opacity: 0;
}

#day {
    width: 100vh;
    position: absolute;
    top: 50%;
    font-family: font_light;
    color: #FFF;
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transition: 0.3s transform;
}

#day:hover {
    transform: rotate(-90deg) translateY(-1px);
    -webkit-transform: rotate(-90deg) translateY(-1px);
    -moz-transform: rotate(-90deg) translateY(-1px);
    -ms-transform: rotate(-90deg) translateY(-1px);
}

.calendar-icon {
    width: 16px;
    margin-left: 8px;
    transform: translateY(2px);
}


/*CONTENT*/

.container {
    /*background-color: lightgreen;*/
	display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80vw;
    margin-top: 180px;
    margin-bottom: 100px;
    transform: translateX(25px);
    -o-transform: translateX(25px);    
    -ms-transform: translateX(25px);
    -moz-transform: translateX(25px);
    -webkit-transform: translateX(25px);
}

.box-content {
	/*background-color: lightpink;*/
	margin-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.three-col {
    display: flex;
}

.two-col {
    display: none;
}

.one-col {
    display: none;
}

.col {
    display: flex;
    flex-direction: column;
}

.box {
    padding: 15px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    border: 1px solid #FFF;
    font-family: font_light;
    font-size: 13px;
    line-height: 16px;
    width: 310px;
    color: #FFF;
}

.iau img {
    width: 99.5%;
    margin-top: 2px;
    margin-bottom: 20px;
}

.ia-logo {
    width: 85%;
    transform: translateX(1%);
    margin-top: 30px;
}

.logos-ia {
    width: 99.5%;
    margin-top: 15px;
}

.content-title {
	font-family: font_medium;
	font-size: 18px;
}

.content a {
    color: #FFF;
}

.content a:hover {
    text-decoration: underline;
}

.bold {
	font-family: font_medium;
}

.today .content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 20px;
}

.arrow {
	font-size: 25px;
}

.italic {
    font-family: font_light_italic; 
}

.marginia1 {
    margin-top: 40px;
}

.marginia2 {
    margin-top: 80px;
}


/*FOOTER*/

.footer {
    width: 330px;
    border-top: 1px solid #FFF;
    display: flex;
    flex-direction: row;
    justify-content: center;
    transform: translateX(25px);
}

.footer img {
    height: 33px;
    margin: 15px;
}

.footer-design {
    font-family: font_light;
    color: #FFF;
    font-size: 8px;
    margin-top: 20px;
    margin-left: 7px;
    margin-right: 7px;
    text-align: center;
}

.design-bold {
    font-family: font_medium;
    font-size: 9px;
    line-height: 12px;
}


/*TYPOGRAPHY*/

@font-face {
    font-family: font_light;
    src: url(fonts/Ubuntu-Light.ttf);
}

@font-face {
    font-family: font_light_italic;
    src: url(fonts/Ubuntu-Light-Italic.ttf);
}

@font-face {
    font-family: font_bold;
    src: url(fonts/Ubuntu-Bold.ttf);
}

@font-face {
    font-family: font_medium;
    src: url(fonts/Ubuntu-Medium.ttf);
}