#content {
    background: none;
}
.background-container {
    position: absolute;
    background-image: url('/static/img/talos.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    width: 100%;
    filter: blur(2px);
    z-index: -1;
}
.page {
    position: relative;
    height: 100%;
    opacity: 1;
    z-index: 1;
}
.section {
    height: 100%;
    align-items: center;
}

.image-field {
    display: flex;
    justify-content: center;
    align-items: center;
}
.presentation-image {
    width: 95%;
    height: auto;
    border: 3px solid #F6E6AE;
    border-radius: 10px;
}

.main-page-label {
    align-items: center;
    padding: 0 35px 0 15px;
    color: #14A9A5;
}
.main-page-title {
    font-family: Georgia;
    font-size: 34px;
    font-weight: 600;
    color: #F6E6AE;
}
.main-page-list {
    font-weight: 300;
    font-size: 16px;
    padding: 20px 0 0 50px;
    color: #F6E6AE;
    list-style-type: none;
}
.main-page-list li {
    position: relative;
    margin-top: 5px;
    text-align: justify;
}
.main-page-list li::before {
    content: '•';
    position: absolute;
    left: -20px;
    color: #F6E6AE;
    font-size: 16px;
}
.button-studying {
    margin-left: 50px;
}
#button-href-studying {
    font-size: 24px;
    font-weight: 400;
    width: 200px;
    color: black;
    background-color: #F6E6AE;
    transition: background-color 0.15s ease-in-out;
    border: 3px solid #B4B7FA;
    border-radius: 10px;
    outline: none;
}
#button-href-studying:hover {
    box-shadow: 0px 0px 10px 5px #F6E6AE;
}