:root {
    --primary-accent-color : #264653ff;
    --shadow-subtle: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    --neutral-gray:#dadada;
}

* {
    margin:0;
    padding:0;
    font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    color:var(--primary-accent-color);
    box-sizing: border-box;
}

body{
    overflow-x: hidden;
}

content {
    width: 100%;
}

content .sections:nth-child(odd){
    background-color: var(--primary-accent-color);
}

content .sections:nth-child(odd) * {
    color:white;
}
.sections {
    width: 100%;
    padding:2rem 0;
}

header {
    background-color: var(--primary-accent-color);
}

.inner_content {
    display: flex;
    flex-flow: column;
    gap:1rem;
    max-width: clamp(500px, 100%, 1200px);
    margin:auto;
    padding:1rem;
}

header .inner_content {
    flex-flow: row wrap;
}

header .inner_content .account_actions {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    gap:1rem;
}

header .inner_content .account_actions a {
    background-color: white;
    color:var(--primary-accent-color);
    font-weight: bold;
    text-decoration: none;
    padding: 5px 25px;

    border-radius: 5px;

    display: grid;
    align-items: center;
    justify-content: center;
}

.section_screenshot {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}

.section_screenshot .text-content {
    width: clamp(300px,50%,60%);
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-size: 1.5rem;
    font-weight: bold;
}

.section_screenshot .text-content .account_actions  {
    
    margin-top: 2rem;
    display: flex;
    gap:2rem;
}

.section_screenshot .text-content .account_actions a {
    text-decoration: none;
    padding: 5px 15px;
    
    border-radius: 5px;
    
    display: grid;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-accent-color);
    color: white;

    font-weight: normal;
}
.dialer-in-function {
    width: clamp(400px,50%,500px);
    border-radius: 5px;
    border:1px solid var(--primary-accent-color);
    box-shadow: var(--shadow-subtle);
    background-color: white;

    padding:10px;
    margin:1rem auto;
}

.three-steps {
    display: flex;
    flex-flow: row wrap;
    gap:1rem;
    justify-content: space-evenly;
}

.three-steps div {
    width:clamp(300px,30%,350px);
    background-color: white;
    border-radius: 25px;
    overflow: hidden;
    display: grid;
    grid-template-rows: 1fr 2rem;
}

.three-steps img {
    width: calc(100% - 4rem);
    margin:2rem;

}

.three-steps span {
    display: grid;
    align-items: center;
    justify-content: center;
    background-color: var(--neutral-gray);
    color: var(--primary-accent-color) !important;
    font-weight: bold;
}


.video-container {
    display: grid;
    align-items: center;
    justify-content: center;
    max-width: 600px;

    overflow: hidden;
}

.video-container video {
    width: 100%;
}


.features ol,ul {
    margin-left: 2rem;
}




footer{
    display: block;
    height: 200px;
    border-top: 2px solid var(--primary-accent-color);
    text-align: center;
}