*{
    text-align: left;
    vertical-align: middle;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    user-select: none;
}
*::-webkit-scrollbar {
    display: none;
  }
.material-icons-outlined, .material-symbols-outlined{
    font-family: 'Material Icons';
    width: min-content;
    margin: 0;
    padding: 0;
}
body {
    background-color: teal;
    height: 100vh;
    margin: 0;
}
/* Home */

article{
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    height: 100%;
}
.bracket{
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    height: 100%;
}
.scroll{
    overflow: scroll;
}

.clickable{
    cursor: pointer;
}
.disclaimer{
    display:flex;
    flex-direction: row;
    justify-content:space-between;
    align-content: center;
    align-items: center;
    height: max-content;
    padding: 10px;
    width: max-content;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    transition-duration: 0.3s;
}
.disclaimer .title{
    font-size: 110%;
    padding: 10px;
}

.disclaimer-dismiss{
    bottom: -10px;
    opacity: 0;
    transition-duration: 0.75s;
    visibility: collapse;
}


.about{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    height: max-content;
}
.profile{
    position: relative;
    margin: 25px;
    width: 400px;
    height: 300px;
    overflow: hidden;
    transition-duration: 0.3s;}
    .profile .picture{
    margin: 0;
    position: relative;
    width: 400px;
    transition-duration: 0.3s;
    border-radius: 10px;}
    .profile:hover{
        height: 600px;
        transition-duration: 0.3s;
    }
    .profile:hover > .picture{
        width: 350px;
        height: auto;
        left: 0;
        transition-duration: 0.3s;
        margin: 25px;
        border-radius: 10px;
    }
    .profile > .title{
        transition-duration: 0.4s;
        width: max-content;
        font-size: 200%;
        font-weight: 600;
        padding: 10px 20px 10px 20px;
        transform: translate(20px, -80px);
        border-radius: 10px;
        box-shadow: 0px 0px 10px 3px black;
        background-color: white;}
    .profile:hover > .title{
            margin-left:10px;
            transition-duration: 0.25s;
            background-color: transparent;
            box-shadow: none;
            transform: translate(0, 0);
            padding-top: 0;}
        .profile .text{
            transform: translate(0, -215px);
            font-size: 130%;
            padding: 0 25px;
        }
        .links-carousel{
            height: max-content;
            width: 100%;
            display:flex;
            flex-direction: row;
            justify-content: center;
            align-content: flex-start;
            flex-wrap: wrap;

        }

        .button{
            border: 3px solid black;
            border-radius: 10px;
            text-align: center;
            min-width: 85px;
            margin: 10px;
            padding: 10px;
            transition-duration: 0.25s;  
            width: max-content;
        }
        .button:hover{
            transition-duration: 0.25s;
            box-shadow: 10px 10px 0px 0px black;
            background-color: #009688;
        }
        .button:hover > a .title{
            transition-duration: 0.25s;
            color: white;
        }
        .button a .title{
            color: black;
            text-decoration: none;
            font-size: 130%;
            transition-duration: 0.25s;
        }
            .button a .title span{
                    font-size: 120%;
                }
        a .greyed{
            box-shadow: none;
            color: grey;
            background-color: white;
        }
        .buttons > .greyed{
            color: grey;
            background-color: white;
            border: 3px solid grey;
            box-shadow: none;
        }
        .button:hover > a .greyed, .buttons > .greyed a .greyed{
            background-color: white;
            color: grey;}


        .widecard .buttons{
            transition-duration: 0.1s;
            display: flex;
            justify-content: space-evenly;
            width: calc(100% - 40px);
            margin-left: 20px;
            margin-top: 20px;
            border-radius: 10px;  
            align-content: center;  
        }
        .widecard:hover > .buttons{
            transition-duration: 0.5s;
            transition-delay: 0.1s;
            margin-left:calc(20% + 20px);
            width: calc(60% - 40px);
        }



.name{
    position:relative;
    margin: 25px;
    height: 100px;
    width: 400px;}
    .name .text{
    font-size: 45px;
    font-weight: bold;
    text-align: center;
    line-height: 100px;}
.content{
    height: 100%;
    overflow: scroll;
}
nano{
    height: 0;
    font-size: 0;
}
.widecard{
    margin: 25px;
    width: 30vw;
    overflow: hidden;
    height: calc(calc(30vw / 16) * 9);
    border-radius: 10px;
    transition-duration: 0.3s;}
    .widecard:last-of-type{
        margin-bottom: 50px;}
.widecard:hover{
    transition-duration: 0.3s;
    height: calc(calc(calc(30vw / 16) * 9) + 260px );
    /* height: max-content; */
}
    .widecard .image{
        border-radius: 10px;}
        .widecard .image img{
            transition-duration: 0.4s;
            width: 30vw;
            height: auto;
            filter: brightness(0.7);
            border-radius: 10px;}
        .widecard .image .title{
        transition-duration: 0.4s;
        width: max-content;
        font-size: 200%;
        font-weight:600;
        padding: 10px 20px 10px 20px;
        transform: translate(30px, -90px);
        border-radius: 10px;
        box-shadow: 0px 0px 10px 3px black;
        background-color: white;}
        .widecard:hover > .image img{
            filter: brightness(1);
            transition-duration: 0.4s;
            width: calc(30vw - 60px);
            margin: 30px 30px 0 30px;
            height: auto;
            border-radius: 10px;
        }
        .widecard:hover > .image .title{
            margin-left:10px;
            transition-duration: 0.25s;
            background-color: transparent;
            box-shadow: none;
            margin-top: 10px;
            transform: translate(0, 0);}
    .widecard .description{
        margin-left: 10px;
        margin-right: 10px;}
        .widecard .description .info{
            transform: translate(0, -80px);
            font-size: 130%;
            margin-left: 20px;
            margin-right: 20px;
            margin-top: 10px;
            opacity: 0;
            transition-duration: 0.3s;
            height: 75px;}
        .widecard:hover > .description .info{
            transform: translate(0, 0);
            opacity: 1;
            transition-duration: 0.3s;
        }
    .widecard .buttons{
        transition-duration: 0.1s;
        display: flex;
        justify-content: space-evenly;
        width: calc(100% - 40px);
        margin-left: 20px;
        margin-top: 20px;
        border-radius: 10px;  
        align-content: center;  
    }



.card{
    box-shadow: 10px 10px 0px 0px black;
    border-radius: 10px;
    background-color: white;
}   

@media only screen and (max-width: 1400px) {
    .bracket{
        flex-direction: column;
        height: max-content;
        width: max-content;
    }
    .widecard{
        width: 40vw;
        height: calc(calc(40vw / 16) * 9);}
    .widecard:hover{
        transition-duration: 0.3s;
        height: calc(calc(calc(40vw / 16) * 9) + 230px );
    }
            .widecard .image img{
                width: 40vw;}

            .widecard:hover > .image img{
                width: calc(40vw - 60px);
            }
}
@media only screen and (max-width: 1050px) {
    article{
        flex-direction: column;
        height: max-content;
        width: 100%;
        align-items: center;
    }
    .widecard{
        width: 40vw;
        height: calc(calc(40vw / 16) * 9);}
    .widecard:hover{
        transition-duration: 0.3s;
        height: calc(calc(calc(40vw / 16) * 9) + 230px );
    }
            .widecard .image img{
                width: 40vw;}

            .widecard:hover > .image img{
                width: calc(40vw - 60px);
            }

            .profile{
                width: 40vw;
                height: calc(calc(40vw / 4) * 3);}
                .profile .picture{
                margin: 0;
                position: relative;
                width: 40vw;
                transition-duration: 0.3s;}
                .profile:hover{
                    height: 750px;
                    transition-duration: 0.3s;
                }
                .profile:hover > .picture{
                    width: calc(40vw - 50px);
                }
                .profile .title{
                    transform: translate(20px, -80px);}
}
@media only screen and (max-width: 800px) {
    article{
        flex-direction: column;
        height: max-content;
        width: 100%;
        align-items: center;
    }
    .widecard{
        width: 90vw;
        height: calc(calc(90vw / 16) * 9);}
    .widecard:hover{
        transition-duration: 0.3s;
        height: calc(calc(calc(90vw / 16) * 9) + 230px );
    }
            .widecard .image img{
                width: 90vw;}

            .widecard:hover > .image img{
                width: calc(90vw - 60px);
            }

            .profile{
                width: 90vw;
                height: calc(calc(90vw / 4) * 3);}
                .profile .picture{
                margin: 0;
                position: relative;
                width: 90vw;
                transition-duration: 0.3s;}
                .profile:hover{
                    height: 750px;
                    transition-duration: 0.3s;
                }
                .profile:hover > .picture{
                    width: calc(90vw - 50px);
                }
                .profile .title{
                    transform: translate(20px, -80px);}
}

@media only screen and (max-width: 600px) {
    .widecard:hover{
        transition-duration: 0.3s;
        height: calc(calc(calc(90vw / 16) * 9) + 250px );
    }
    .profile:hover{
        height: 675px;
        transition-duration: 0.3s;
    }
    .disclaimer{
        width: calc(100vw - 80px);
    }
}