body {
            font-family: Hepta Slab;
            display: flex;
            align-items: center;
            flex-direction: column;
            text-align: center;
        }

        section {
            min-width:min-content;
            max-width: 75%;
            background-color: rgba(0, 0, 0, 0.479);
            backdrop-filter: blur(5px);
            border-radius: 15px;
            padding: 3%;
            margin: 50px;
        }

        .line {
            display:flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-evenly;
        }

        .box {
            max-width:300px;
            display:flex;
            align-items:center;
            justify-content: center;
            flex-direction: column;
            transition: .4s;
        }

        .preview 
        {
            background-color: rgba(255, 0, 55, 0.267);
            border: 2px solid black;
            width:300px;
            height:200px;
            display:flex;
            align-items:center;
            justify-content: center;
            flex-direction: column;
            transition: .4s;
            border-radius: 10px;

        }
        .box:hover {
            scale:1.1;
            rotate:5deg;
            filter:brightness(1.4)
        }
        .preview:hover {
            scale:1.1;
            rotate:5deg;
            filter:brightness(1.1);
            background-color: rgb(114, 6, 29);
        }

        img {max-width:270px; border-radius: 10px;}


        a {text-decoration: none;}
        hr {border-color: white;}