html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    user-select: none;
}

* {
    font-family: "Montserrat";
    /* cursor: url("../assets/cursors/BreadCursor.png"), default; */
}

a {
    position: relative;
    display: block;
    text-decoration: none;
    outline: none;
    color: #000;
}

a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    top: 110%;
    left: 0;
    background: #ff2929;
    transition: transform 0.5s;
    transform: scaleX(0);
    transform-origin: left;
}

a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

.wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    width: 80%;
}

.content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: calc(100vh - 80px) !important;
    /* height: 100%; */
    width: 100%;
}

.btn {
    background-color: #ff2929;
    color: #fff;
    cursor: pointer;
    transition: transform 200ms;
}

.btn:hover {
    transform: scale(1.1);
}

/* .totopbtn {
    position: sticky;
    left: 3%;
    top: 85%;
    background-color: #ff3e3e;
    height: 3vw;
    width: 3vw;
    border-radius: 90px;
    padding: 1%;
    opacity: 30%;
    transition: opacity 0.25s;
}

.totopbtn:hover {
    opacity: 90%;
    transition: opacity 0.25s;
}

.totopbtn-img {
    height: min-content;
    width: 100%;
    rotate: -90deg;
} */
