#title {
    text-align: center;
    height: 100vh;
    padding-top: 17vh;

    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../../img/backgroundsbundle/Linth.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#title h1 {
    font-size: 12vw;
    text-shadow: 0px 0px 20px #333333;
}

#title #desc {
    width: 700px;
    height: 300px;
    box-sizing: border-box;

    border-radius: 10px;
    margin: 90px auto 0 auto;
    padding: 40px 0;
    background-color: #ffffffc0;
    box-shadow: 0px 0px 20px #333333;

    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 70px;
    text-shadow: 0px 0px 20px #333333;
}

@media only screen and (max-width: 900px) {
    #title #desc {
        height: auto;
        font-size: 20px;
        line-height: 50px;
        width: 95%;
    }
}

#about, #events {
    padding: 50px 20px;
}

#about h1, #events h1 {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    text-align: center;
}

#about p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 25px;
    text-align: justify;
}

.project-box {
    display: flex;
    padding: 30px;
    margin: 25px 0px 0px 0px;
    flex-direction: row;
    height: 500px;
    background-color: rgb(0, 0, 0, 0.5);
    
    border-radius: 20px;
}

.project-thumbnail {
    max-height: 100%;
    max-width: 100%;
    margin-right: 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 5px #444444;
    transition: box-shadow 0.2s;
}

.project-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-title {
    font-family: Montserrat;
    font-size: 30px;
    text-align: center;
}

.project-info p {
    font-family: Montserrat;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
    margin-top: 20px;
}

.project-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 20px;
}

.project-button {
    border: 2px #ffffff solid;
    border-radius: 10px;
    padding: 5px 10px 5px 10px;
    height: 40px;
    width: 40%;

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.project-button .material-symbols-outline {
    line-height: 40px;
}

.project-button-icon {
    height: 25px;
}

.project-button-label {
    width: 70%;
    text-align: center;
    font-family: Montserrat;
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 40px;
    text-transform: uppercase;

    letter-spacing: normal;
    transition: letter-spacing 0.2s;
}

.project-button:hover .project-button-label {
    letter-spacing: 1px;
}

@media only screen and (max-width: 1100px) {
    .project-box {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .project-thumbnail {
        height: auto;
        width: 100%;
        max-width: 600px;
        margin-right: 0;
    }

    .project-info {
        margin-top: 30px;
    }

    .project-info p {
        margin-top: 15px;
    }

    .project-button {
        width: 250px;
    }
}

@media only screen and (max-width: 600px) {
    .project-buttons {
        flex-direction: column;
        align-items: center;
    }

    .project-button {
        margin-top: 20px;
    }
}