
section {
    display: grid;
    place-items: center;
    align-items: center;
    /*min-height: 100vh;*/
}

#logo {
    width: 200px;
}

.dark_icon {
    font-size: 30px;
    width: 40px;
    color: #876445;
}

.light_icon {
    font-size: 30px;
    width: 40px;
    color: white;
}

#background {
    max-width:100%;
    max-height:100%;
    min-width: 400px;
    vertical-align: middle;
}

.title {
    padding-top: 50px;
}

.light_section {
    color: #876445;
    background-color: white;
    margin-top: -5px;
    margin-bottom: -5px;
}

.middle_section {
    color: white;
    background-color: #c0b19c;
    margin-top: -5px;
    margin-bottom: -5px;
}

.dark_section {
    color: white;
    background-color: #876445;
    margin-top: -5px;
    margin-bottom: -5px;
}



.hidden {
    opacity: 0;
    filter: blur(15px);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0px);
    transition: all 1s;
}

.avatar {
    height: 200px;
    background-color: white;
    border-radius: 10px;
    margin: 5px;
}

.delay1 {
    transition-delay: 0.5s;
}
.delay2 {
    transition-delay: 1s;
}
.delay3 {
    transition-delay: 1.5s;
}
.delay4 {
    transition-delay: 2s;
}

.scale {
    transform: scale(0);
}

.scale_show {
    transform: scale(1.0);
    transition: all 0.5s;
}

.rect {
    border-radius: 25px;
    border: 2px solid #876445;
    width: 150px; height: 80px; padding: 20px; margin: 10px;
}

.rect:hover{
border-radius: 25px;
    border: 2px solid #876445;
    background-color: #c0b19c;
    width: 150px; height: 80px; padding: 20px; margin: 10px;
}

.line {
    width: 100%;
}



a {
   
    color: white;
}

a:visited {
    color: #d48540;
}

a:hover {
    color: #c0b19c;
}