@import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&family=Madimi+One&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #d7d7d7;
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
h1, a{
    font-family: "Afacad", sans-serif;
}
header{
    display: flex;
    width: 100%;
    height: 150px;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background-color: #565656;
    margin-bottom: 5px;
    box-shadow: 0 0 2px 2px rgb(243, 243, 243);
}
header a{
    background-color: green;
    color: white;
    border: 2px solid white;
    padding: 5px;
    border-radius: 4px 7px;
    text-decoration: none;
    box-shadow: 0 0 2px 2px #3b3b3b;
}
header p{
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 26px;
}
@keyframes btn-rotate {
    from{
        opacity: 0;
        translate: 170px 0;
    }
    to{
        opacity: 1;
        translate: -120 0;
    }
    
}
.background-roll #roll-select::-webkit-scrollbar{
    width: 8px;
}
.background-roll #roll-select::-webkit-scrollbar-thumb{
    background-color: rgb(34, 34, 34);
    border-radius: 5px;
    border: 1px solid rgb(190, 190, 190)
}
.background-roll{
    display: flex;
    justify-content: end;
    padding: 40px;
    margin-bottom: 20px
}
.background-roll #roll-select{
    width: 300px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #e7e7e7;
    height: 170px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    box-shadow: inset 0 0 2px 2px rgb(243, 243, 243);
}
.background-roll #roll-select button{
    width: 75px;
    height: 75px;
    margin-bottom: 10px;
    border-radius: 50%;
    background-color: white;
    border: none;
    cursor: pointer;
    animation: btn-rotate 1ms ease-in-out;
    animation-timeline: view();
    animation-range: cover 0% cover 50%;
}
.background-roll #roll-select button img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.item{
    width: 90%;
    max-width: 1024px;
    min-width: 320px;
    display: block;
    margin-bottom: 30px;
}
.item#tetarquiteturaecontrucoesltda, .item#hovy{
    display: none;
}
.item iframe{
    width: 100%;
    height: 92vh;
}
.item a{
    width: 100%;
    font-weight: bolder;
    display: block;
    text-decoration: none;
    background-color: gray;
    color: white;
    text-align: center;
    padding: 7px;
    border-radius: 8px;
    transition: .8s;
}
.item a:hover{
    color: black;
    background-color: rgb(240, 240, 240);
    border-radius: 4px;
}
.scroll-iframes{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}