*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
header{
    background-color: rgb(39, 38, 38);
    border-bottom: 2px solid gray;
    position: fixed;
    height: auto;
    width: 100%;
}
.container-home{
    display: grid;
    grid-template-columns: 300px 1fr 200px;
    height: 65px;
}
.logo{
    display: flex;
    align-items: center;
    margin-left: 20px;
    position: relative;
    bottom: 2px;
}
.logo a > img{
    width: 70px;
}
.logo a{
    transition: 0.5s;
}
.logo a:hover{
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2); 
    transform: scale(1.1);
    transition: 0.3s; 
}

.profile {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: end;
    gap: 10px;
    margin-right: 10px;
    position: fixed;
    right: 0%;
    top: 1%;
    font-size: 20px;
}
.profile .guest{
    margin-top: 15px;
}

.profile a{
    text-decoration: none;
    color: white;
}
.profile a:hover{
    color: gray;
    text-decoration: underline;
    transition: 0.2 ease;
}
.profile a > img{
    border: 2px solid gray;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 100%;
}
.out a{
    position: relative;
    margin-top: 20px;
}
body{
    background-color: rgba(0, 0, 0, 0.897);
    font-family: sans-serif;
}
.container{
    color: white;
    top: 0%;
    bottom: 0%;
    right: 0%;
    left: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.home-container{
    display: flex;
    justify-content: center;
}
.link a{
    width: 250px;
    border-radius: 5px;
    padding: 8px;
    background-color: gray;
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: center;
    font-size: 30px;
}
.link a:hover{
    background-color: rgb(74, 71, 71);
}