@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
}

body{
    /* background-image: linear-gradient(to right bottom, #ffffff, #fcfafc, #f9f6f8, #f8f1f3, #f6ecec); */
    background-image: url('./bg.svg');
    background-size: cover;
    background-attachment: fixed;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.contact {
    float: left;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 28px;
    border: solid 1px #000;
    background: #000;
    color: #F6F4ED;
    position: relative;
    transform: translate(0) translateY(0);
    transition: all 0.3s ease;
    margin: 10px 0 0 0;
    position: relative;
}

.contact em {
    position: absolute;
    width:0;
    right: 0;
    overflow:hidden;
    opacity: 0;
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact:hover {
    padding-right: 30px; /* Adjust width expansion as needed */
    background: #fff;
    color: #000;
}

.contact:hover em {
    width:40px;
    text-align: center;
    opacity: 1;
    transform: rotate(0deg);
    animation: wave 0.5s infinite;
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-20deg); }
    100% { transform: rotate(0deg); }
}

.logo{
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
}

.logo:before{
    content: '';
    background-image: url(./disrptr_scribble_logo.svg);
    width: 36px;
    height: 36px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    position: relative;
    top: 6px;
    margin: 0 0.25em 0 0;
}

.main-content {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.text-section p {
    font-size: 1.5rem;
    text-align: center;
    padding: auto 1em;
}

.footer {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    color: #ccc;
}

.footer p{
    font-size: 0.85em;
}

@media only screen and (max-width: 600px) {
    .header {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .contact {
        margin: 10px 0 0 0;
        font-size: 14px;
        padding: 8px 12px;
    }

    .main-content {
        padding: 10px;
    }

    .text-section p {
        font-size: 1.2rem;
    }

    .footer {
        padding: 15px;
    }
}




h3.amin{
    letter-spacing: 0;
    cursor: cell;
}

h3.amin span{
    margin: 0;
    padding: 0;
    display: inline;
}
h3.amin span.c,
h3.amin:hover span.a{
    letter-spacing: -10px;
    opacity: 0;
    transition: all ease-in-out 0.3s;

}
h3.amin:hover span.c,
h3.amin span.a{
    letter-spacing: 0px;
    display: inline;
    opacity: 1;
    transition: all ease-in-out 0.3s;
}