

.container{
    background-image: url(../starter-code/assets/home/background-home-desktop.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    height: 100vh;
}

.main-body{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 200px;
    margin-top: 280px;
}

.main-content{
    display: flex;
    flex-direction: column;
    text-align: start;
    align-self: start;
    justify-content: start;
    text-transform: uppercase;
    gap: 20px;
}


.main-btn{
    font-size: 32px;
    background: var(--white);
    color: var(--secondary-color);
    font-family: var(--text-bellefair);
    border-radius: 50%;
    border: none;
    outline: none;
    height: 272px;
    width: 272px;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
    display: grid;
    place-items: center;
    -webkit-tap-highlight-color: transparent;
    z-index: 1;
}

.main-btn::after{
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    background: rgb(255,255,255,0.1);
    backdrop-filter: blur(1px);
    border-radius: 50%;
    inset: 50%;
    transform: translate(-50%,-50%);
    transition: all 0.5s ease;
    z-index: -1;
}

.main-btn:hover::after,
.main-btn:active::after{
    width: 420px;
    height: 420px;
}

.main-btn:hover{
    color: rgba(11, 13, 23, 0.5);
}

